Add jq dep check

This commit is contained in:
Jeffrey Serio 2024-10-08 02:48:40 -05:00
parent 3dd94bf2c3
commit 53c72c3bf3

View File

@ -37,6 +37,11 @@ if ! test -x "$(command -v unzip)"; then
exit 1 exit 1
fi fi
if ! test -x "$(command -v jq)"; then
echo "Missing dependencies: jq"
exit 1
fi
# Directory on the local filesystem where the fonts will be installed. # Directory on the local filesystem where the fonts will be installed.
LOCAL_FONT_DIR="${HOME}/.local/share/fonts" LOCAL_FONT_DIR="${HOME}/.local/share/fonts"