Skip to content

Commit

Permalink
Merge pull request #533 from mcristina422/checkInstall
Browse files Browse the repository at this point in the history
🏃 Properly check if binary exists
  • Loading branch information
k8s-ci-robot committed Aug 6, 2019
2 parents e0bee34 + 42f8083 commit 054ee41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/check-everything.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function fetch_kb_tools {
}

function is_installed {
if [ command -v $1 &>/dev/null ]; then
if command -v "$1" &>/dev/null; then
return 0
fi
return 1
Expand Down

0 comments on commit 054ee41

Please sign in to comment.