geforkt von Mirrors/Paper
[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.
Dieser Commit ist enthalten in:
Ursprung
97b9ce8476
Commit
49f584a14b
@ -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
|
||||
#
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren