Skip to content

Commit

Permalink
refactor: always remove .zip #45
Browse files Browse the repository at this point in the history
  • Loading branch information
gumaciel committed Aug 21, 2023
1 parent 8d11434 commit 7b90975
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/create_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ else
godot_version="-v$1"
fi

cd ./bin/release

cd "./bin/release" && zip -r "poing-admob-ios$godot_version.zip" "./"
file_name="poing-admob-ios$godot_version.zip"

rm $file_name || true
zip -r $file_name ./

0 comments on commit 7b90975

Please sign in to comment.