mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Originally I worked on this for the multi-stage build Dockerfile changes. Decided to split this out as we are still waiting for multi-stage to be available on CI and rebasing these is pretty annoying. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
VNDR_COMMIT=a6e196d8b4b0cbbdc29aebdb20c59ac6926bb384
 | 
						|
 | 
						|
install_vndr() {
 | 
						|
	echo "Install vndr version $VNDR_COMMIT"
 | 
						|
	git clone https://github.com/LK4D4/vndr.git "$GOPATH/src/github.com/LK4D4/vndr"
 | 
						|
	cd "$GOPATH/src/github.com/LK4D4/vndr"
 | 
						|
	git checkout -q "$VNDR_COMMIT"
 | 
						|
	go build -buildmode=pie -v -o ${PREFIX}/vndr .
 | 
						|
}
 |