Moved to google.golang.org/genproto/googleapis/api/annotations
Fixes #52
This commit is contained in:
28
vendor/github.com/go-kit/kit/update_deps.bash
generated
vendored
Executable file
28
vendor/github.com/go-kit/kit/update_deps.bash
generated
vendored
Executable 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
|
||||
|
||||
Reference in New Issue
Block a user