From 185571317678eb17af4ca8b53542c1e7aed59d02 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 1 Jun 2020 17:06:41 -0400 Subject: [PATCH] escaped which to avoid hitting aliases --- scripts/core/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 6989449f..a490bd40 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -39,7 +39,7 @@ if [ -z "$skip_all" ]; then function whichable() { to_find="$1"; shift - local WHICHER="$(which which 2>/dev/null)" + local WHICHER="$(\which which 2>/dev/null)" if [ $? -ne 0 ]; then # there is no which command here. we produce nothing due to this. echo -- 2.34.1