mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	… and fixes the last bits that were missing :3. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			856 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			856 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source "${MAKEDIR}/.validate"
 | 
						|
 | 
						|
packages=( $(go list ./... 2> /dev/null | grep -vE "^github.com/docker/docker/vendor|^github.com/docker/docker/autogen" || true ) )
 | 
						|
 | 
						|
errors=()
 | 
						|
for p in "${packages[@]}"; do
 | 
						|
	# Remove the github.com/docker/docker/ prefix from listed package
 | 
						|
	package="${p#github.com/docker/docker/}"
 | 
						|
	# Run golint on package/*.go file explicitly to validate all go files
 | 
						|
	# and not just the ones for the current platform.
 | 
						|
	failedLint=$(golint $package/*.go)
 | 
						|
	if [ "$failedLint" ]; then
 | 
						|
		errors+=( "$failedLint" )
 | 
						|
	fi
 | 
						|
done
 | 
						|
 | 
						|
if [ ${#errors[@]} -eq 0 ]; then
 | 
						|
	echo 'Congratulations!  All Go source files have been linted.'
 | 
						|
else
 | 
						|
	{
 | 
						|
		echo "Errors from golint:"
 | 
						|
		for err in "${errors[@]}"; do
 | 
						|
			echo "$err"
 | 
						|
		done
 | 
						|
		echo
 | 
						|
		echo 'Please fix the above errors. You can test via "golint" and commit the result.'
 | 
						|
		echo
 | 
						|
	} >&2
 | 
						|
	false
 | 
						|
fi
 |