Add jq dep check
hyperreal.bsky.moonshadow.dev 1 year ago 53c72c3b 3dd94bf2
··· 37 37 exit 1 38 38 fi 39 39 40 40 + if ! test -x "$(command -v jq)"; then 41 41 + echo "Missing dependencies: jq" 42 42 + exit 1 43 43 + fi 44 44 + 40 45 # Directory on the local filesystem where the fonts will be installed. 41 46 LOCAL_FONT_DIR="${HOME}/.local/share/fonts" 42 47