From 1aed65cd7244f80249dd2e2a09ab4f741ed530fd Mon Sep 17 00:00:00 2001 From: Chase Date: Mon, 10 Jan 2022 14:37:47 -0600 Subject: [PATCH] fix --- .github/release.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/release.sh b/.github/release.sh index 4b126f2..dee9d39 100644 --- a/.github/release.sh +++ b/.github/release.sh @@ -4,14 +4,14 @@ sudo apt update >> /dev/null && sudo apt install zip -y >> /dev/null # Ensure zi cd iw4x/ cd iw4x_00/ zip -r iw4x_00.iwd * -find . ! -name 'iw4x_00.iwd' -type d -exec rm -rf {} + -find . ! -name 'iw4x_00.iwd' -type f -exec rm -rf {} + -cd .. +mv iw4x_00.iwd ../ +cd .. +rm -rf iw4x_00/ cd iw4x_01/ zip -r iw4x_01.iwd * -find . ! -name 'iw4x_01.iwd' -type d -exec rm -rf {} + -find . ! -name 'iw4x_01.iwd' -type f -exec rm -rf {} + +mv iw4x_01.iwd ../ cd .. +rm -rf iw4x_01/ cd .. rm LICENSE rm README.md