Browse Source

fix _exists

pull/397/head
neil 8 years ago
parent
commit
ce4be4e91e
  1. 2
      acme.sh

2
acme.sh

@ -252,7 +252,7 @@ _exists() {
eval type "$cmd" >/dev/null 2>&1
elif command >/dev/null 2>&1; then
command -v "$cmd" >/dev/null 2>&1
elif which which >/dev/null 2>&1; then
else
which "$cmd" >/dev/null 2>&1
fi
ret="$?"

Loading…
Cancel
Save