BOSL2/scripts/check_for_tabs.sh

10 lines
115 B
Bash
Raw Normal View History

2021-06-23 02:44:47 +00:00
#!/bin/bash
2023-11-18 09:34:19 +00:00
if grep -H -n -P '\t' *.scad ; then
2021-06-23 02:44:47 +00:00
echo "Tabs found in source code." 2>&1
exit 1
fi
exit 0