Commit 413f8db2 authored by Dave Machado's avatar Dave Machado Committed by GitHub
Browse files

remove executable extensions

parent f6b7468e
...@@ -22,7 +22,7 @@ echo "running format validation..." ...@@ -22,7 +22,7 @@ echo "running format validation..."
./validate_format.rb $FORMAT_FILE > format_results.txt ./validate_format.rb $FORMAT_FILE > format_results.txt
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
echo "format validation failed!" echo "format validation failed!"
cat format_results.txt | build_bot.py cat format_results.txt | build_bot
exit 1 exit 1
else else
echo "format validation passed!" echo "format validation passed!"
...@@ -31,7 +31,7 @@ echo "running link validation..." ...@@ -31,7 +31,7 @@ echo "running link validation..."
./validate_links.rb $LINK_FILE ./validate_links.rb $LINK_FILE
if [[ $? != 0 ]]; then if [[ $? != 0 ]]; then
echo "link validation failed!" echo "link validation failed!"
echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot.py echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot
exit 1 exit 1
else else
echo "link validation passed!" echo "link validation passed!"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment