15 lines
		
	
	
		
			320 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			320 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash -e
 | 
						|
 | 
						|
ORG_PATH="github.com/coreos"
 | 
						|
REPO_PATH="${ORG_PATH}/coreos-cloudinit"
 | 
						|
 | 
						|
if [ ! -h gopath/src/${REPO_PATH} ]; then
 | 
						|
	mkdir -p gopath/src/${ORG_PATH}
 | 
						|
	ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
 | 
						|
fi
 | 
						|
 | 
						|
export GOBIN=${PWD}/bin
 | 
						|
export GOPATH=${PWD}/gopath
 | 
						|
 | 
						|
go build -o bin/coreos-cloudinit ${REPO_PATH}
 |