mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-09 16:45:44 -07:00
10 lines
193 B
Bash
Executable file
10 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd Server
|
|
if [ ! -f hasRun.txt ]; then
|
|
sh mvnw clean
|
|
touch hasRun.txt
|
|
fi
|
|
sh mvnw package -DskipTests
|
|
mv target/*with-dependencies.jar /tmp/server.jar
|
|
java -jar /tmp/server.jar
|