Created
August 17, 2016 18:43
-
-
Save aaron-prindle/7148ff562cfde1bc7669da88908bee6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -v | |
mkdir -p $HOME/newgopath/src/k8s.io | |
export GOPATH=$HOME/newgopath | |
cd $HOME/newgopath/src/k8s.io | |
git clone https://github.com/kubernetes/minikube.git | |
cd minikube | |
godep restore ./... | |
cd $GOPATH/src/k8s.io/kubernetes | |
git fetch --tags | |
git checkout v1.3.5 | |
godep restore ./... | |
cd $GOPATH/src/k8s.io/minikube | |
rm -rf Godeps/ vendor/ | |
godep save ./... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment