mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
echo "** presubmit/$(basename $0)"
 | 
						|
 | 
						|
# Check to make sure "testing" is not imported
 | 
						|
if [[ $(go list -f '{{ join .Deps " "}}') == *" testing "* ]]; then
 | 
						|
    echo "** presubmit/$(basename $0): please remove any 'import \"testing\"'"
 | 
						|
    exit 1
 | 
						|
fi
 |