blob: 2d84658366882e0aa69dc170c3c59d176305a5cb [file] [log] [blame] [raw]
#!/bin/bash
if [ "$1" != "run" ];
then
./setup.sh
fi
if [ $? -eq 0 ];
then
cp target/glowstone-2017.1.1.*.jar target/glowstone.jar
(cd target && ../start.sh)
else
echo "Glowstone did not compile."
fi