https://github.com/etcd-io/etcd
Raw File
Tip revision: 43f7c94ac8e5049e328809c083cf7e358b196e97 authored by Gyu-Ho Lee on 19 August 2016, 17:20:37 UTC
version: bump to v3.0.5
Tip revision: 43f7c94
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