mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
7 lines
218 B
Bash
Executable File
7 lines
218 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
git ls-files -- ':(exclude)extern/' 'CMakeLists.txt' '*.cmake' |
|
|
xargs grep -P '^\s*\t' &&
|
|
( echo 'CMake files contain leading tab character. Use only spaces for indentation'; exit -1 )
|
|
exit 0
|