Browse Source

added jq as dependancy

DerLinkman 3 months ago
parent
commit
f2f3fbe497
1 changed files with 1 additions and 1 deletions
  1. 1 1
      _modules/scripts/core.sh

+ 1 - 1
_modules/scripts/core.sh

@@ -16,7 +16,7 @@ NC='\e[0m'
 caller="${BASH_SOURCE[1]##*/}"
 caller="${BASH_SOURCE[1]##*/}"
 
 
 get_installed_tools(){
 get_installed_tools(){
-    for bin in openssl curl docker git awk sha1sum grep cut; do
+    for bin in openssl curl docker git awk sha1sum grep cut jq; do
         if [[ -z $(which ${bin}) ]]; then echo "Cannot find ${bin}, exiting..."; exit 1; fi
         if [[ -z $(which ${bin}) ]]; then echo "Cannot find ${bin}, exiting..."; exit 1; fi
     done
     done