Added 'curl' to the list of required programs in zrep script.

This commit is contained in:
Stig-Ørjan Smelror 2024-03-15 11:53:45 +01:00
parent d0210580b1
commit 17c9058be5

2
zrep
View File

@ -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