mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
12 lines
198 B
Bash
Executable File
12 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if ! [[ "$0" =~ scripts/updatedep.sh ]]; then
|
|
echo "must be run from repository root"
|
|
exit 255
|
|
fi
|
|
|
|
go get -v -u github.com/golang/dep/cmd/dep
|
|
dep ensure -v
|
|
dep prune
|