convenience script to make/update fabrication zipfiles

This commit is contained in:
2022-07-25 09:01:24 -07:00
parent ac2165d184
commit cf1e9ca44a
2 changed files with 6 additions and 1 deletions

5
make-fabrication-zips.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
for i in */fabrication
do
(cd $i; rm ${i%/fabrication}.zip; zip -9 ${i%/fabrication}.zip *.gbr *.drl)
done