mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-01-16 21:58:27 +01:00
10 lines
115 B
Bash
Executable File
10 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
|
|
|
|
|