Add curl to dependencies

This commit is contained in:
BBaoVanC 2020-12-27 23:59:06 -06:00
parent 3006961993
commit 69ce777957
No known key found for this signature in database
GPG key ID: 18089E4E3CCF1D3A

View file

@ -1,6 +1,6 @@
#!/bin/sh
required="neofetch jp2a jq"
required="neofetch jp2a jq curl"
for req in $required; do
! command -v "$req" > /dev/null 2>&1 && echo "$req not found!" && exit 1