1
0

Add a note about updating plugins in Makefile

This commit is contained in:
Jeff Mitchell 2018-05-29 21:09:57 -04:00
parent 8568e791dd
commit da2bb1c8a7

View File

@ -91,6 +91,8 @@ bootstrap:
go get -u $$tool; \
done
# Note: if you have plugins in GOPATH you can update all of them via something like:
# for i in $(ls | grep vault-plugin-); do cd $i; git remote update; git reset --hard origin/master; dep ensure -update; git add .; git commit; git push; cd ..; done
update-plugins:
grep vault-plugin- vendor/vendor.json | cut -d '"' -f 4 | xargs govendor fetch