X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=start_server_client_union.sh;h=116a18858730db1d08d348642cf8c3dbe55228cc;hb=b66acb753e8e6a228feca99d72e8bc0988d5dd11;hp=ac161b5d596fe0d74432c634772a2ea9b60a4290;hpb=621b0c375b81bfb96473638dcdb231f721f31d4a;p=plomrogue diff --git a/start_server_client_union.sh b/start_server_client_union.sh index ac161b5..116a188 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -3,23 +3,36 @@ # Abort the script on error. set -e +# Don't let any log leftovers from before interfere. +if [ -e ./log ] +then + rm log +fi + +# Abort if no proper Python version installed. +test=`command -v python3 | wc -l` +if [ 1 != $test ] +then + echo "FAILURE:" + echo "No python3 installed, but it's needed!" + exit 1 +fi + # Give helpful message to players that want to start without compiling first. -if [ ! -e ./roguelike-server ] +if [ ! -e ./roguelike-client ] then - echo 'No ./roguelike-server file found to execute. Try "make" first?' + echo 'No ./roguelike-client executable found. Try "./redo" first?' false fi -if [ ! -e ./roguelike-client ] +if [ ! -e ./libplomrogue.so ] then - echo 'No ./roguelike-client file found to execute. Try "make" first?' + echo 'No ./libplomrogue.so library found. Try "./redo" first?' false fi # Use shell script's arguments for server and pipe server output to log file. # This script's wrapper script will read it out on exit. -./roguelike-server "$@" > log 2>&1 & - -echo TEST >> log +python3 ./roguelike-server "$@" > log 2>&1 & # Give server some time to start up and exit on error. sleep 0.01