Call tools before prep in "make bootstrap" rule (#26691)

This commit is contained in:
Robert 2024-04-30 13:36:11 -05:00 committed by GitHub
parent 225cd9d19f
commit 2e8d9a2bb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,7 +174,7 @@ hooks:
# bootstrap the build by generating any necessary code and downloading additional tools that may
# be used by devs.
bootstrap: prep tools
bootstrap: tools prep
# 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