#!/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