Moved to google.golang.org/genproto/googleapis/api/annotations

Fixes #52
This commit is contained in:
Valerio Gheri
2017-03-31 18:01:58 +02:00
parent 024c5a4e4e
commit c40779224f
2037 changed files with 831329 additions and 1854 deletions

28
vendor/github.com/go-kit/kit/update_deps.bash generated vendored Executable file
View File

@@ -0,0 +1,28 @@
#!/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 -f '{{join .Deps "\n"}}' ./...
}
function not_stdlib {
xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
}
function not_gokit {
grep -v 'go-kit/kit'
}
function go_get_update {
while read d
do
echo $d
go get -u $d
done
}
deps | not_stdlib | not_gokit | go_get_update