X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=start_server_client_union.sh;h=676e6740b3aac91c7e8f67d29fed5ce9e767f0d7;hb=cdf875d1b67cfced25569caccc74f4c45417dc96;hp=c56bf06cfa370b21dfde7024d5bcab4922151ced;hpb=c71321a44c10bac2071008d95a9ddd90af8191a5;p=plomrogue diff --git a/start_server_client_union.sh b/start_server_client_union.sh index c56bf06..676e674 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -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