Generate all release files and package into .zip format. Maybe tar.bz, too? For the linux people such as myself...

This commit is contained in:
mmcwilliams 2020-08-19 12:56:48 -04:00
parent 2d16a5cde7
commit 059967f091
1 changed files with 17 additions and 0 deletions

17
scripts/releases.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
VERSIONS=( "v1" "v2" "v3" )
SIZES=( "50ft" "100ft" )
for VERSION in "${VERSIONS[@]}"
do
:
for SIZE in "${SIZES[@]}"
do
:
echo "./stl/${SIZE}_${VERSION} -> ./releases/gnal_${SIZE}_${VERSION}.zip"
zip -r "./releases/gnal_${SIZE}_${VERSION}.zip" "./stl/${SIZE}_${VERSION}/*.stl"
done
done