Skip to content
This repository has been archived by the owner on Mar 2, 2023. It is now read-only.

Commit

Permalink
merge(#9): fixed install plugin busybox support
Browse files Browse the repository at this point in the history
Fixed install plugin busybox support
#9
  • Loading branch information
pregnor committed May 20, 2021
2 parents a22bce4 + 984a3b3 commit 4cfe8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install_plugin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function get_first_binary() {

local binary=""
for candidate in "${candidates[@]}"; do
if which -s "${candidate}"; then
if which "${candidate}" &>/dev/null; then
binary="${candidate}"

break
Expand Down

0 comments on commit 4cfe8b0

Please sign in to comment.