ioq3quest/travis-ci-build.sh
Zack Middleton 494789664e Try to fix Travis CI MinGW builds
Listing i686-w64-mingw32-gcc as a compiler stopped working.
Travis tries to print version before installing it.

$ i686-w64-mingw32-gcc --version

/home/travis/build.sh: line 201: i686-w64-mingw32-gcc: command not found

The command "i686-w64-mingw32-gcc --version" failed and exited with 127 during setup.
2014-05-19 17:28:06 -05:00

15 lines
175 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;