2023-08-07 19:26:50 -04:00
|
|
|
#!/bin/bash
|
2024-09-04 22:12:19 -04:00
|
|
|
echo "$PLUGIN_CONFIGJSON" >> config.json
|
|
|
|
|
|
|
|
if [ ! -s config.json ]; then
|
|
|
|
echo "no config found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ -z $(grep '[^[:space:]]' "config.json") ]] ; then
|
|
|
|
echo "no config in file"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-08-07 19:26:50 -04:00
|
|
|
for d in packs/*/ ; do
|
2024-01-05 00:17:08 -05:00
|
|
|
sticker-pack "$d" --add-to-index web/packs/
|
2023-08-07 19:26:50 -04:00
|
|
|
done
|