reaction/travis-ci-build.sh

16 lines
175 B
Bash
Raw Permalink Normal View History

2013-07-21 23:15:13 +00:00
#!/bin/sh
failed=0;
# Default Build
(make clean release) || failed=1;
if [ $failed -eq 1 ]; then
2016-03-03 21:18:53 +00:00
echo "Build failure.";
2013-07-21 23:15:13 +00:00
else
2016-03-03 21:18:53 +00:00
echo "Build successful.";
2013-07-21 23:15:13 +00:00
fi
2016-03-03 21:18:53 +00:00
exit $failed;