mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-14 05:33:56 +01:00
[CI-SKIP] Update test server rebuild logic
Many times I've ran paper test trying to SHUTDOWN the existing test server, only for it to see that my target folder is missing (for whatever reason), and it try to build paper to make the jar exists. Well, the patch process will wipe out any uncommitted changes, causing loss of work. Now we will only build patches if your missing your entire Paper-Server folder, and only trigger a mvn compile if the jar is missing.
This commit is contained in:
parent
cd4848b2e6
commit
03d7841172
1 changed files with 11 additions and 4 deletions
|
@ -63,17 +63,24 @@ fi
|
|||
# JAR CHECK
|
||||
#
|
||||
|
||||
jar="$basedir/Paper-Server/target/paper-${minecraftversion}.jar"
|
||||
folder="$basedir/Paper-Server"
|
||||
jar="$folder/target/paper-${minecraftversion}.jar"
|
||||
if [ ! -d "$folder" ]; then
|
||||
(
|
||||
echo "Building Patched Repo"
|
||||
cd "$basedir"
|
||||
./paper patch
|
||||
)
|
||||
fi
|
||||
|
||||
if [ ! -f "$jar" ] || [ "$2" == "build" ] || [ "$3" == "build" ]; then
|
||||
(
|
||||
echo "Building Paper"
|
||||
cd "$basedir"
|
||||
./paper patch
|
||||
mvn clean install
|
||||
mvn package
|
||||
)
|
||||
fi
|
||||
|
||||
|
||||
#
|
||||
# JVM FLAGS
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue