From fbd842b2ea44eb0bbcb915f6947da377cc31cc51 Mon Sep 17 00:00:00 2001 From: John D Pell Date: Mon, 14 Feb 2022 15:29:55 -0800 Subject: [PATCH] lib/helpers: fix extraneous quotes from `_bash-it-grep()` --- lib/utilities.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utilities.bash b/lib/utilities.bash index 63734a0f..28c7c318 100644 --- a/lib/utilities.bash +++ b/lib/utilities.bash @@ -63,7 +63,7 @@ function _bash-it-array-dedup() { # Outputs a full path of the grep found on the filesystem function _bash-it-grep() { : "${BASH_IT_GREP:=$(type -p egrep || type -p grep)}" - printf "%s" "${BASH_IT_GREP:-'/usr/bin/grep'}" + printf "%s" "${BASH_IT_GREP:-/usr/bin/grep}" } # Runs `grep` with extended regular expressions