etcd/scripts/update_dep.sh
Piotr Tabor f290ab2e60 Update dependecies:
github.com/grpc-ecosystem/grpc-gateway v1.14.6 -> grpc-gateway v1.16.0
  golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e->v0.0.0-20210220033141-f8bda1e9f3ba
2021-03-27 20:48:33 +01:00

33 lines
749 B
Bash
Executable File

#!/bin/bash
# Usage:
# ./scripts/update_dep.sh module version
# or ./scripts/update_dep.sh module
# e.g.
# ./scripts/update_dep.sh github.com/golang/groupcache
# ./scripts/update_dep.sh github.com/soheilhy/cmux v0.1.5
#
# Updates version of given dependency in all the modules that depend on the mod.
source ./scripts/test_lib.sh
mod="$1"
ver="$2"
function maybe_update_module {
log_callout "Processing ${module}"
run go mod tidy
deps=$(go list -f '{{if not .Indirect}}{{if .Version}}{{.Path}},{{.Version}}{{end}}{{end}}' -m all)
if [[ "$deps" == *"${mod}"* ]]; then
if [ -z "${ver}" ]; then
run go get "${mod}"
else
run go get "${mod}@${ver}"
fi
fi
}
go mod tidy
run_for_modules maybe_update_module