updates and testing

This commit is contained in:
2023-11-11 20:26:19 -08:00
parent 669fd75733
commit 4d1ee6cada
5 changed files with 156 additions and 4 deletions

13
testing/run.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Copyright (c) 2022 fithwum
# All rights reserved
cd /MCserver
JAR=./MCserver-*.jar
while [ true ]; do
java -Xmx4G -Xms1024M -Xmn1G -jar $JAR nogui
if [ $? -eq 0 ]; then
break
fi
done