Skip to content

Commit

Permalink
Merge pull request #9750 from thantos/thantos/wsl2
Browse files Browse the repository at this point in the history
chore(core): Prereq check - support paths with spaces.
  • Loading branch information
NetaNir authored Aug 17, 2020
2 parents 5af718b + 9ca1d02 commit d31d4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-prerequisites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ check_which() {

w=$(which ${app}) || w=""

if [ -z $w ] || [ $w == "$app not found" ]
if [ -z "$w" ] || [ "$w" == "$app not found" ]
then
die "Missing dependency: $app. Install $app >= $min"
else
Expand Down

0 comments on commit d31d4db

Please sign in to comment.