add brief script to create ZIP from scripts

This commit is contained in:
Stefan Schmidt-Bilkenroth 2021-06-09 15:31:29 +02:00
parent d4e64a3c13
commit e17250d930
1 changed files with 18 additions and 0 deletions

18
buildzip.sh Executable file
View File

@ -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 ..