Skip to content

Commit

Permalink
fix(syntax): missing && (closes #55)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama committed Oct 1, 2022
1 parent 7b9586a commit d46010b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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#"?"}")
Expand Down

0 comments on commit d46010b

Please sign in to comment.