mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-24 07:53:54 +00:00
10 lines
177 B
Bash
10 lines
177 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
OUTPUT=$(grep -nRP '\t' --include=\*.{cpp,hpp,c,h} apps components)
|
||
|
|
||
|
if [[ $OUTPUT ]] ; then
|
||
|
echo "Error: Tab characters found!"
|
||
|
echo $OUTPUT
|
||
|
exit 1
|
||
|
fi
|