[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 cd4848b2e6
commit 03d7841172

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
#