mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			649 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			649 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
TOOL=vault
 | 
						|
 | 
						|
## Make a temp dir
 | 
						|
tempdir=$(mktemp -d update-${TOOL}-deps.XXXXXX)
 | 
						|
 | 
						|
## Set paths
 | 
						|
export GOPATH="$(pwd)/${tempdir}"
 | 
						|
export PATH="${GOPATH}/bin:${PATH}"
 | 
						|
cd $tempdir
 | 
						|
 | 
						|
## Get Vault
 | 
						|
mkdir -p src/github.com/hashicorp
 | 
						|
cd src/github.com/hashicorp
 | 
						|
echo "Fetching ${TOOL}..."
 | 
						|
git clone https://github.com/hashicorp/${TOOL}
 | 
						|
cd ${TOOL}
 | 
						|
 | 
						|
## Clean out earlier vendoring
 | 
						|
rm -rf Godeps vendor
 | 
						|
 | 
						|
## Get govendor
 | 
						|
go get github.com/kardianos/govendor
 | 
						|
 | 
						|
## Init
 | 
						|
govendor init
 | 
						|
 | 
						|
## Fetch deps
 | 
						|
echo "Fetching deps, will take some time..."
 | 
						|
govendor fetch +missing
 | 
						|
 | 
						|
echo "Done; to commit run \n\ncd ${GOPATH}/src/github.com/hashicorp/${TOOL}\n"
 |