mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 07:11:36 +00:00
14 lines
No EOL
179 B
Bash
Executable file
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; |