From dc9f8dac4b97ea39fd8070bb7b1bb794759cea5d Mon Sep 17 00:00:00 2001 From: Wes Dean <45051395+wesley-dean-flexion@users.noreply.github.com> Date: Fri, 18 Oct 2019 15:18:49 -0400 Subject: [PATCH] Fix grep flags --- bin/regex-grep-negative | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/regex-grep-negative b/bin/regex-grep-negative index bf0f9ed..0081e87 100644 --- a/bin/regex-grep-negative +++ b/bin/regex-grep-negative @@ -39,7 +39,7 @@ DEFAULT_CUST_OPS="" # This will be replaced either with custom options # or with the default options. -MY_CHECK="grep --color=always -LnHE \"__CUSTOM_OPT_PLACEHOLDER__\" \"\$1\" || true" +MY_CHECK="grep -iLE \"__CUSTOM_OPT_PLACEHOLDER__\" \"\$1\" || true" # Can this check fix the problems? ENABLE_FIX=0