X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=blobdiff_plain;f=start_server_client_union.sh;h=ad05038c54ff3d3ad4908315260d213d3f1b0181;hb=033d9244b2685c72d7934dbaaf8288b0f66c5230;hp=69c959dcab8f633ab03fa514d4d47696e997e964;hpb=5fd4be90f125e318a2fcaa0b92329511cb178f5a;p=plomrogue diff --git a/start_server_client_union.sh b/start_server_client_union.sh index 69c959d..ad05038 100755 --- a/start_server_client_union.sh +++ b/start_server_client_union.sh @@ -9,15 +9,24 @@ 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 "./redo" 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 "./redo" first?' + echo 'No ./libplomrogue.so library found. Try "./redo" first?' false fi