https://github.com/etcd-io/etcd
Raw File
Tip revision: 6f48bda7ac36c8a53ce4210b06e5498947b08fab authored by Gyu-Ho Lee on 30 June 2016, 17:04:59 UTC
version: bump to v3.0.0
Tip revision: 6f48bda
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