reaction/travis-ci-build.sh
2015-04-18 17:08:33 -04:00

14 lines
No EOL
179 B
Bash
Executable file

#!/bin/sh
failed=0;
# Default Build
(make clean release) || failed=1;
if [ $failed -eq 1 ]; then
echo "Build failure.";
else
echo "Build successful.";
fi
exit $failed;