mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	- every execution of dirname costs time - less repeating Signed-off-by: Jörg Thalheim <joerg@higgsboson.tk>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source "${MAKEDIR}/.validate"
 | 
						|
 | 
						|
IFS=$'\n'
 | 
						|
files=( $(validate_diff --diff-filter=ACMR --name-only -- '*.go' | grep -v '^vendor/' || true) )
 | 
						|
unset IFS
 | 
						|
 | 
						|
errors=()
 | 
						|
for f in "${files[@]}"; do
 | 
						|
	# we use "git show" here to validate that what's committed passes go vet
 | 
						|
	failedVet=$(go vet "$f")
 | 
						|
	if [ "$failedVet" ]; then
 | 
						|
		errors+=( "$failedVet" )
 | 
						|
	fi
 | 
						|
done
 | 
						|
 | 
						|
 | 
						|
if [ ${#errors[@]} -eq 0 ]; then
 | 
						|
	echo 'Congratulations!  All Go source files have been vetted.'
 | 
						|
else
 | 
						|
	{
 | 
						|
		echo "Errors from go vet:"
 | 
						|
		for err in "${errors[@]}"; do
 | 
						|
			echo " - $err"
 | 
						|
		done
 | 
						|
		echo
 | 
						|
		echo 'Please fix the above errors. You can test via "go vet" and commit the result.'
 | 
						|
		echo
 | 
						|
	} >&2
 | 
						|
	false
 | 
						|
fi
 |