game/old/dist_client
2020-05-11 19:52:50 -05:00

12 lines
262 B
Bash
Executable File

#!/usr/bin/env bash
rm -rf client
mkdir client
mkdir client/code
cp -r lib sprites tiles animation blocks.py recipes.py showstep.py client/code
cp client.py client/code
echo "#!/usr/bin/env bash
cd code
python3 client.py
cd .." > client/run
chmod u+x client/run