saintnet_stickers/create_packs.sh
2025-01-20 20:59:04 -05: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