mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 15:21:35 +00:00
494789664e
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.
15 lines
175 B
Bash
Executable file
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;
|
|
|