Added zip files to release resources, combined with flash script

This commit is contained in:
Gunnar Skjold
2022-03-26 09:19:03 +01:00
parent c3e5ce344c
commit 772004c0a2
10 changed files with 207 additions and 15 deletions

11
scripts/mkzip.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
find -name firmware.bin | while read firmware;do
dir=`dirname $firmware`
env=`basename $dir`
if [ -f scripts/$env/mkzip.sh ];then
echo "Building zip for env '$env'"
chmod +x scripts/$env/mkzip.sh
scripts/$env/mkzip.sh
fi
done