1
0
Fork 0
matched/zip

12 lines
159 B
Plaintext
Raw Permalink Normal View History

2019-08-25 16:53:12 +08:00
#!/bin/bash
2019-08-25 17:50:41 +08:00
for f in *-*; do
2019-08-25 16:53:12 +08:00
if ! [ -d "$f" ]; then
continue
fi
cd "$f"
echo "Zipping $f..."
2019-08-25 17:50:41 +08:00
zip -r "../out/$f.zip" manifest.json icon.png
2019-08-25 16:53:12 +08:00
cd ..
done