[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:
Aikar 2018-10-02 21:44:03 -04:00
parent 97b9ce8476
commit 49f584a14b
No known key found for this signature in database
GPG Key ID: 401ADFC9891FAAFE
1 changed files with 11 additions and 4 deletions

View File

@ -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
#