mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-16 07:15:14 +01:00
85f0a0c69a
Ensures that failures of primarily applying patches during builds should be passed up, this will need a better look over at some point
8 lines
144 B
Bash
Executable File
8 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git submodule update --init && ./scripts/applyPatches.sh || exit 1
|
|
|
|
if [ "$1" == "--jar" ]; then
|
|
mvn clean package
|
|
fi
|