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
fi
done
+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."
+ exit
+fi
+
ERR=0
WARN=1
INFO=2