mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 13:23:52 +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
|