1
0
mirror of https://github.com/XLabsProject/iw4x-rawfiles.git synced 2023-08-02 15:02:11 +02:00
iw4x-rawfiles/scripts/release.sh

36 lines
469 B
Bash
Raw Permalink Normal View History

2022-01-03 18:18:32 +01:00
#!/bin/bash
sudo apt update >> /dev/null && sudo apt install zip -y >> /dev/null # Ensure zip is up to date.
2022-07-21 21:56:54 +02:00
cd iw4x/
# iw4x_00
2022-01-03 18:18:32 +01:00
cd iw4x_00/
zip -r iw4x_00.iwd *
2022-01-10 21:37:47 +01:00
mv iw4x_00.iwd ../
cd ..
rm -rf iw4x_00/
# iw4x_01
2022-01-03 18:18:32 +01:00
cd iw4x_01/
zip -r iw4x_01.iwd *
2022-01-10 21:37:47 +01:00
mv iw4x_01.iwd ../
2022-01-03 18:18:32 +01:00
cd ..
2022-01-10 21:37:47 +01:00
rm -rf iw4x_01/
# iw4x_02
cd iw4x_02/
zip -r iw4x_02.iwd *
mv iw4x_02.iwd ../
cd ..
rm -rf iw4x_02/
# Cleanup
2022-01-03 18:18:32 +01:00
cd ..
rm LICENSE
rm README.md
rm -rf .github
2022-07-21 21:59:12 +02:00
rm -rf scripts
2022-01-03 18:18:32 +01:00
zip -r release.zip *