mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +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
|