mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
9179782002
(cherry picked from commit ab97a90c76
)
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/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
|