saintnet_stickers/generate.sh
stryan 5e864a3e70
All checks were successful
build / deploy (push) Successful in 2m19s
updates?
2025-01-20 21:11:00 -05:00

16 lines
253 B
Bash
Executable File

#!/usr/bin/env bash
touch config.json
cat >./config.json <<EOF
$CONFIGJSON
EOF
if [ ! -s config.json ]; then
echo "no config found"
exit 1
fi
if [[ -z $(grep '[^[:space:]]' "config.json") ]]; then
echo "no config in file"
rm config.json
exit 1
fi