From 17c9058be51ee4a893bce8ffeb7dc86aa5de7c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Fri, 15 Mar 2024 11:53:45 +0100 Subject: [PATCH] Added 'curl' to the list of required programs in zrep script. --- zrep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zrep b/zrep index d14ca39..e6b9e2e 100755 --- a/zrep +++ b/zrep @@ -130,7 +130,7 @@ function zrep_find_string() { function zrep_check_for_deps() { # Array of required external programs - local required_programs=('jq') + local required_programs=('jq' 'curl') # Iterate over the array for program in "${required_programs[@]}"; do