Browse Source

add pipe to build_bot

pull/440/head
Dave Machado 6 years ago
parent
commit
504bd3d417
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      build/main.sh

+ 3
- 2
build/main.sh View File

@@ -19,18 +19,19 @@ else
fi

echo "running format validation..."
./validate_format.rb $FORMAT_FILE
./validate_format.rb $FORMAT_FILE > format_results.txt
if [[ $? != 0 ]]; then
echo "format validation failed!"
cat format_results.txt | build_bot
exit 1
else
echo "format validation passed!"
fi

echo "running link validation..."
./validate_links.rb $LINK_FILE
if [[ $? != 0 ]]; then
echo "link validation failed!"
echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot
exit 1
else
echo "link validation passed!"


Loading…
Cancel
Save