From d46010ba7ba82751ace7eb28ff8aad663db3678c Mon Sep 17 00:00:00 2001 From: oddlama Date: Sat, 1 Oct 2022 13:33:55 +0200 Subject: [PATCH] fix(syntax): missing && (closes #55) --- scripts/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.sh b/scripts/utils.sh index e52797c..bda549b 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -379,7 +379,7 @@ function check_wanted_programs() { program="${tuple%%=*}" checkfile="" [[ "$tuple" == *=* ]] \ - checkfile="${tuple##*=}" + && checkfile="${tuple##*=}" if ! has_program "${program#"?"}" "$checkfile"; then if [[ "$program" == "?"* ]]; then missing_wanted+=("${program#"?"}")