etcd/scripts/updatedep.sh

23 lines
495 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
if ! [[ "$0" =~ scripts/updatedep.sh ]]; then
echo "must be run from repository root"
exit 255
2016-08-15 22:11:45 +03:00
fi
if [ -d "gopath.proto" ]; then
# gopath.proto is created by genproto.sh and it thoroughly messes
# with go mod.
echo "Remove gopath.proto before running this script"
exit 255
fi
if [[ $(go version) != "go version go1.13"* ]]; then
echo "expect Go 1.13+, got:" "$(go version)"
exit 255
fi
GO111MODULE=on go mod tidy -v
GO111MODULE=on go mod vendor -v