From 64f9a3ebe8a0a01bbe5796e6fe7730bf8be631af Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Tue, 22 Jun 2021 19:53:33 -0700 Subject: [PATCH] Correct for GNU grep syntax. --- scripts/check_for_tabs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_for_tabs.sh b/scripts/check_for_tabs.sh index 21b86d1..a075703 100755 --- a/scripts/check_for_tabs.sh +++ b/scripts/check_for_tabs.sh @@ -1,6 +1,6 @@ #!/bin/bash -if grep -H -n '\t' *.scad ; then +if grep -H -n -P '\t' *.scad ; then echo "Tabs found in source code." 2>&1 exit 1 fi