mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 12:07:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			347 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			347 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
echo "==> Checking that code complies with gofmt requirements..."
 | 
						|
 | 
						|
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
 | 
						|
if [[ -n ${gofmt_files} ]]; then 
 | 
						|
    echo 'gofmt needs running on the following files:'
 | 
						|
    echo "${gofmt_files}"
 | 
						|
    echo "You can use the command: \`make fmt\` to reformat code."
 | 
						|
    exit 1
 | 
						|
fi
 |