Abort properly on error for build script

This commit is contained in:
Aikar
2016-03-24 20:39:20 -04:00
parent 926ba9a3bb
commit 92f8da4b50
3 changed files with 22 additions and 7 deletions

View File

@@ -1,6 +1,9 @@
#!/bin/bash
git submodule update --init && ./remap.sh && ./decompile.sh && ./init.sh && ./applyPatches.sh
(git submodule update --init && ./remap.sh && ./decompile.sh && ./init.sh && ./applyPatches.sh) || (
echo "Failed to build Paper"
exit 1
) || exit 1
if [ "$1" == "--jar" ]; then
mvn clean install && ./paperclip.sh
(mvn clean install && ./paperclip.sh) || exit 1
fi