This commit is contained in:
hexlocation 2025-04-19 00:29:35 +02:00
parent 739abce169
commit 044a0d674a
11 changed files with 100 additions and 13 deletions

10
build.sh Normal file
View file

@ -0,0 +1,10 @@
#!/bin/bash
catch () {
echo "An error occured: see above."
exit 1
}
./gradlew build -PisDebug=./server/plugins || catch
cd server && java -jar server.jar -nogui && cd ..