mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 08:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			6 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
 |