1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-12 00:42:56 +00:00

fix _exists

This commit is contained in:
neil
2016-11-17 13:20:20 +08:00
parent 82dc2244c0
commit ce4be4e91e
+1 -1
View File
@@ -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="$?"