Correct for GNU grep syntax.

This commit is contained in:
Garth Minette 2021-06-22 19:53:33 -07:00
parent 5b4b5e3439
commit 64f9a3ebe8

View file

@ -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