saintnet_stickers/create_packs.sh
stryan 5e864a3e70
All checks were successful
build / deploy (push) Successful in 2m19s
updates?
2025-01-20 21:11:00 -05:00

10 lines
190 B
Bash
Executable File

#!/bin/bash
if [ ! -f config.json ]; then
echo "no config found during sticker generation"
exit 1
fi
for d in packs/*/; do
sticker-pack "$d" --add-to-index web/packs/
done
rm config.json