Codebase list golang-github-go-kit-kit / run/71c4d6ff-0b5f-4c1b-9fd0-be5954a003b1/main update_deps.bash
run/71c4d6ff-0b5f-4c1b-9fd0-be5954a003b1/main

Tree @run/71c4d6ff-0b5f-4c1b-9fd0-be5954a003b1/main (Download .tar.gz)

update_deps.bash @run/71c4d6ff-0b5f-4c1b-9fd0-be5954a003b1/mainraw · history · blame

#!/usr/bin/env bash

# This script updates each non-stdlib, non-Go-kit dependency to its most recent
# commit. It can be invoked to aid in debugging after a dependency-related
# failure on continuous integration.

function deps {
	go list -deps -f '{{if and .DepOnly (not .Standard)}}{{.ImportPath}}{{end}}' ./...
}

function unique_repos {
	cut -d '/' -f-3 | sort | uniq
}

function not_gokit {
	grep -v 'go-kit/kit'
}

function go_get_update {
	while read d
	do
		echo $d
		go get -u $d/... || echo "failed, trying again with master" && cd $GOPATH/src/$d && git checkout master && go get -u $d
	done
}

deps | unique_repos | not_gokit | go_get_update