Capture some script failure states better

Ensures that failures of primarily applying patches during builds
should be passed up, this will need a better look over at some point
This commit is contained in:
Shane Freeder 2020-11-09 01:35:40 +00:00
parent 7bf23525e2
commit 85f0a0c69a
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
git submodule update --init && ./scripts/applyPatches.sh
git submodule update --init && ./scripts/applyPatches.sh || exit 1
if [ "$1" == "--jar" ]; then
mvn clean package

View File

@ -2,19 +2,19 @@
case "$1" in
"rb" | "rbp" | "rebuild")
scripts/rebuildPatches.sh
scripts/rebuildPatches.sh || exit 1
;;
"p" | "patch")
scripts/build.sh
scripts/build.sh || exit 1
;;
"m" | "up" | "merge")
scripts/mergeUpstream.sh
scripts/mergeUpstream.sh || exit 1
;;
"b" | "build")
scripts/build.sh --jar
scripts/build.sh --jar || exit 1
;;
"e" | "edit")
scripts/edit.sh
scripts/edit.sh || exit 1
;;
*)
echo "WaterfallMC build tool command. This provides a variety of commands to control the WaterfallMC"