1#!/bin/bash
2
3if grep -H -n -P '\t' *.scad ; then
4    echo "Tabs found in source code." 2>&1
5    exit 1
6fi
7exit 0
8
9