1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-01 06:39:43 +00:00

CI/check_tabs.sh: remove unused script

This has been superseded by .clang-format
This commit is contained in:
Austin English 2024-06-06 13:11:01 -05:00
parent 1ed27e1855
commit e782d07a40

View file

@ -1,9 +0,0 @@
#!/bin/bash
OUTPUT=$(grep -nRP '\t' --include=\*.{cpp,hpp,c,h} --exclude=ui_\* apps components)
if [[ $OUTPUT ]] ; then
echo "Error: Tab characters found!"
echo $OUTPUT
exit 1
fi