https://github.com/etcd-io/etcd
Raw File
Tip revision: a4a52cb15dc9ff4eb2f38c7de2d3626aab4e6df6 authored by Gyu-Ho Lee on 01 July 2016, 20:58:37 UTC
version: bump to v3.0.1
Tip revision: a4a52cb
updatedep.sh
#!/usr/bin/env bash

# A script for updating godep dependencies for the vendored directory /cmd/
# without pulling in etcd itself as a dependency.

rm -rf Godeps vendor
ln -s cmd/vendor vendor
godep save ./...
rm -rf cmd/Godeps
rm vendor
mv Godeps cmd/

back to top