mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-12-06 02:40:23 -08:00
8 lines
246 B
Bash
Executable file
8 lines
246 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo 'A build version must be supplied as the first argument.'
|
|
exit 1
|
|
fi
|
|
|
|
./gradlew server:dist -Pbuildversion=$1
|
|
java -jar -XX:+HeapDumpOnOutOfMemoryError server/build/libs/server-release.jar
|