mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Correct for GNU grep syntax.
This commit is contained in:
parent
5b4b5e3439
commit
64f9a3ebe8
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/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
|
echo "Tabs found in source code." 2>&1
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue