Merge pull request #2545 from kolyshkin/go-mod-vendor

Makefile: fix go vet/fmt
This commit is contained in:
Mrunal Patel 2020-08-10 07:41:04 -07:00 committed by GitHub
commit dedadbf9ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -52,8 +52,8 @@ dbuild: runcimage
$(RUNC_IMAGE) make clean all
lint:
$(GO) vet ./...
$(GO) fmt ./...
$(GO) vet $(MOD_VENDOR) ./...
$(GO) fmt $(MOD_VENDOR) ./...
man:
man/md2man-all.sh
@ -120,7 +120,7 @@ clean:
validate:
script/validate-gofmt
script/validate-c
$(GO) vet ./...
$(GO) vet $(MOD_VENDOR) ./...
ci: validate test release