saintnet_stickers/create_packs.sh
Steve 0abe0361ee
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
give up on secrets
2024-09-04 22:25:48 -04:00

10 lines
194 B
Bash
Executable File

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