diff --git a/.github/scripts/zip.sh b/.github/scripts/zip.sh index acda477..903932e 100644 --- a/.github/scripts/zip.sh +++ b/.github/scripts/zip.sh @@ -1,8 +1,9 @@ cd "${1}" || exit +ls mkdir "./zipped" for file in ./*; do if [ "$file" != "zipped" ]; then - zip -r "./zipped/$file.zip" "$file/*" + zip -r "./zipped/$file.zip" "$file" fi done \ No newline at end of file