mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -e
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
ci/run_${CI_TARGET}.sh
 | 
						|
 | 
						|
if [[ -s "${GCOV_ERROR_FILE}" ]]; then
 | 
						|
  echo '=== Unexpected gcov errors: ==='
 | 
						|
  cat "${GCOV_ERROR_FILE}"
 | 
						|
  exit 1
 | 
						|
fi
 |