blob: babad073aa1ed41387555a10d94c8add599f2be3 [file] [log] [blame] [raw]
#!/bin/bash
if [ "$1" != "run" ];
then
./build.sh
fi
if [ $? -eq 0 ];
then
(cd target && ../scripts/start.sh)
else
echo "Glowstone did not build successfully."
fi