Skip to content

Instantly share code, notes, and snippets.

@wcharczuk
Last active December 19, 2016 20:13
Show Gist options
  • Save wcharczuk/17bb76e5dc94567d68615549c8d0d30a to your computer and use it in GitHub Desktop.
Save wcharczuk/17bb76e5dc94567d68615549c8d0d30a to your computer and use it in GitHub Desktop.
Updates all the blend godeps at once
#! /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