7 lines
138 B
Bash
Executable File
7 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
echo "$CONFIG_JSON" >> config.json
|
|
for d in packs/*/ ; do
|
|
sticker-pack "$d" --add-to-index web/packs/
|
|
done
|
|
rm config.json
|