mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
10 lines
112 B
Bash
10 lines
112 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if grep -H -n '\t' *.scad ; then
|
||
|
echo "Tabs found in source code." 2>&1
|
||
|
exit 1
|
||
|
fi
|
||
|
exit 0
|
||
|
|
||
|
|