if ! command -v glow &> /dev/null
then
echo "Glow not found, markdown rendering not available."
+ echo "Output will be raw markdown and might look weird."
+ echo "Install glow for easier reading & copy-paste."
USE_GLOW=false
fi
if ! command -v jq &> /dev/null
then
echo "jq is needed to run this script, but it wasn't found. Please install it to be able to use this script."
- USE_GLOW=false
+ exit
fi
ERR=0