From 899c7b3b9c74613be94dcbbe7f7ec5f4c8beabee Mon Sep 17 00:00:00 2001 From: Mathias Kahl Date: Tue, 15 Oct 2024 14:55:42 +0200 Subject: [PATCH] [tooling] fixed bundle folder name for real --- development/bundle.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/development/bundle.sh b/development/bundle.sh index 529ab75..86b3d40 100755 --- a/development/bundle.sh +++ b/development/bundle.sh @@ -14,9 +14,13 @@ cd development ./sync.sh # Create a new ZIP file -rm mod_kialo.zip +rm -f mod_kialo.zip rm -rf mod_kialo/vendor_extra -zip -qr mod_kialo.zip mod_kialo + +# The folder in the zip file needs to be called just "kialo" +mv mod_kialo kialo +zip -qr mod_kialo.zip kialo +mv kialo mod_kialo # restore full dependencies (including dev dependencies) cd ..