X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=start_server_client_union.sh;h=676e6740b3aac91c7e8f67d29fed5ce9e767f0d7;hb=91dd475e7a5e1351d1f76cf8d6df6fc8557d2e9c;hp=116a18858730db1d08d348642cf8c3dbe55228cc;hpb=b66acb753e8e6a228feca99d72e8bc0988d5dd11;p=plomrogue diff --git a/start_server_client_union.sh b/start_server_client_union.sh index 116a188..676e674 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -11,7 +11,7 @@ fi # Abort if no proper Python version installed. test=`command -v python3 | wc -l` -if [ 1 != $test ] +if [ 1 -gt $test ] then echo "FAILURE:" echo "No python3 installed, but it's needed!" @@ -19,15 +19,10 @@ then fi # Give helpful message to players that want to start without compiling first. -if [ ! -e ./roguelike-client ] -then - echo 'No ./roguelike-client executable found. Try "./redo" first?' - false -fi if [ ! -e ./libplomrogue.so ] then - echo 'No ./libplomrogue.so library found. Try "./redo" first?' - false + echo 'No ./libplomrogue.so library found. Building …' + ./build.sh fi # Use shell script's arguments for server and pipe server output to log file. @@ -57,4 +52,4 @@ fi # Only start the interface when everything else went well. kill -0 $! 2> /dev/null -./roguelike-client +python3 ./roguelike-client