mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
9 lines
115 B
Bash
Executable file
9 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if grep -H -n -P '\t' *.scad ; then
|
|
echo "Tabs found in source code." 2>&1
|
|
exit 1
|
|
fi
|
|
exit 0
|
|
|
|
|