BOSL2/scripts/check_for_tabs.sh
2021-06-22 19:53:33 -07:00

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