1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-12 21:24:00 +00:00

Update vendor

This commit is contained in:
galal-hussein
2018-10-18 19:34:17 +02:00
committed by Alena Prokharchyk
parent 4fb01ab69e
commit 5163f2a00f
140 changed files with 17545 additions and 818 deletions

View File

@@ -0,0 +1,15 @@
all: build cover test vet
build:
go build -v ./...
cover: test
$(MAKE) -C pbutil cover
test: build
go test -v ./...
vet: build
go vet -v ./...
.PHONY: build cover test vet