123456789101112131415161718 |
- #!/bin/sh
- rm -r ./release
- boon build .
- chmod +x ./release/'Sled.love'
- mkdir -p ./release/SledLinux
- release_path=./release/SledLinux
- filename=sled-linux.tar.gz
- mv ./release/'Sled.love' $release_path
- cp -r ./assets $release_path
- cp -r ./lib $release_path
- cp ./scripts/run.sh $release_path/run.sh
- cp -r ./cmds $release_path
- cp -r ./config $release_path
- tar -zcvf $release_path/$filename $release_path
- echo File is at: $release_path/$filename
|