We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e545f commit b69f8f2Copy full SHA for b69f8f2
.github/scripts/zip.sh
@@ -1,8 +1,9 @@
1
cd "${1}" || exit
2
+ls
3
mkdir "./zipped"
4
for file in ./*;
5
do
6
if [ "$file" != "zipped" ]; then
- zip -r "./zipped/$file.zip" "$file/*"
7
+ zip -r "./zipped/$file.zip" "$file"
8
fi
9
done
0 commit comments