From e17250d930c80d8356a23657e2af9f6ecc548692 Mon Sep 17 00:00:00 2001 From: "stefan.schmidt-bilkenroth" Date: Wed, 9 Jun 2021 15:31:29 +0200 Subject: [PATCH] add brief script to create ZIP from scripts --- buildzip.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 buildzip.sh diff --git a/buildzip.sh b/buildzip.sh new file mode 100755 index 0000000..961a4e0 --- /dev/null +++ b/buildzip.sh @@ -0,0 +1,18 @@ +# !/bin/sh + +# gather the files required for public release +# put them into a ZIP +# +# for now we only need the two Python scripts + +DISTPATH="./out/gruene-signale" +FILEMASK="*.py" + +rm -rf out +mkdir -p $DISTPATH + +cp $FILEMASK $DISTPATH + +cd ./out +zip -r gruene-signale gruene-signale/$FILEMASK +cd ..