10 lines
194 B
Bash
Executable File
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
|