From dab35b715f01636b406ec538c3e37567f21984d9 Mon Sep 17 00:00:00 2001 From: Abheek D <67982792+ADawesomeguy@users.noreply.github.com> Date: Wed, 20 Oct 2021 11:23:35 -0500 Subject: [PATCH] Create simple bash script to zip published releases --- zip-files.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 zip-files.sh diff --git a/zip-files.sh b/zip-files.sh new file mode 100644 index 0000000..0e61d9a --- /dev/null +++ b/zip-files.sh @@ -0,0 +1,6 @@ +FOLDERS=UsmToolkit/bin/Release/netcoreapp3.1/*/ + +for f in $FOLDERS +do + zip -r "${f%/*}.zip" $f +done