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
+3 -3
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