saintnet_stickers/create_packs.sh

10 lines
190 B
Bash
Raw Normal View History

#!/bin/bash
2024-09-04 22:25:48 -04:00
if [ ! -f config.json ]; then
2025-01-20 21:11:00 -05:00
echo "no config found during sticker generation"
2024-09-04 22:12:19 -04:00
exit 1
fi
2025-01-20 21:11:00 -05:00
for d in packs/*/; do
sticker-pack "$d" --add-to-index web/packs/
done
2024-09-04 22:25:48 -04:00
rm config.json