mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	- Fixed clint.sh, it no longer ignores errors in individual files. - Fixed two files that weren't passing the clint test
		
			
				
	
	
		
			10 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
for file in $(cat clint-files.txt); do
 | 
						|
	./clint.py $file || fail=1
 | 
						|
done
 | 
						|
 | 
						|
if [ -n "$fail" ]; then
 | 
						|
	exit 1
 | 
						|
fi
 |