From 5c3ad74b0c7e4e9aca0168172cebb24948f006c4 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 1 Jun 2020 17:08:08 -0400 Subject: [PATCH] omitted main benefit of hiding errors, argh added in 2>/dev/null that i thought was already there. --- 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 a490bd40..674fdc95 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -44,7 +44,7 @@ if [ -z "$skip_all" ]; then # there is no which command here. we produce nothing due to this. echo fi - echo $($WHICHER $to_find) + echo $($WHICHER $to_find 2>/dev/null) } # makes a directory of the name specified and then tries to change the -- 2.34.1