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
1 changed files with 1 additions and 1 deletions

View File

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