Revision d40982fc9160b7471cd832bff34d09e218b12e0e authored by Anthony Romano on 09 September 2016, 20:14:44 UTC, committed by Anthony Romano on 09 September 2016, 20:14:44 UTC
1 parent fe3a1cc
Raw File
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