Last active
December 19, 2016 20:13
-
-
Save wcharczuk/17bb76e5dc94567d68615549c8d0d30a to your computer and use it in GitHub Desktop.
Updates all the blend godeps at once
This file contains hidden or 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
| #! /bin/bash | |
| echo "updating core dependencies" | |
| pushd $GOPATH/src/github.com/blendlabs/go-assert && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-exception && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-name-parser && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-util && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-workqueue && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-logger && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-chronometer && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/go-common && git pull && popd | |
| pushd $GOPATH/src/github.com/blendlabs/spiffy && git pull && popd | |
| pushd $GOPATH/src/github.com/wcharczuk/go-web && git pull && popd | |
| echo "installing 'genv'" | |
| pushd $GOPATH/src/github.com/blendlabs/genv && git pull && go get -u ./... && go install . && popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment