This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/bash
|
|
|
|
if [ -d "./output" ]; then
|
|
rm -r ./output
|
|
fi
|
|
|
|
mkdir output
|
|
cp ./build/SpaceWar output
|
|
cp -r ./assets output
|
|
rm -rf ./output/assets/test
|
|
cp ./HowToPlay.md output/
|
|
cp -r ./snapshot output
|