fix(Makefile): vendor-update

Update the `vendor-update` build target to run `go mod vendor` after
updating dependencies.
This commit is contained in:
Chris Lane 2021-04-28 12:24:21 -04:00
parent 0aca411279
commit 6956f51cae

View File

@ -138,7 +138,7 @@ vendor:
## vendor-update: update vendored dependencies
vendor-update:
$(GO) get -t -u ./...
$(GO) get -t -u ./... && $(GO) mod vendor
## fmt: run go fmt
.PHONY: fmt