From dda983e6bb386b73fa0f12545631c4c6c9113448 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Wed, 16 Jan 2019 00:09:21 +0530 Subject: [PATCH] use dep ensure -vendor-only --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bd672b3a5..e02f4277b 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ test: go vet github.com/ceph/ceph-csi/pkg/... rbdplugin: - if [ ! -d ./vendor ]; then dep ensure; fi + if [ ! -d ./vendor ]; then dep ensure -vendor-only; fi CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/rbdplugin ./rbd image-rbdplugin: rbdplugin @@ -38,7 +38,7 @@ image-rbdplugin: rbdplugin docker build -t $(RBD_IMAGE_NAME):$(RBD_IMAGE_VERSION) deploy/rbd/docker cephfsplugin: - if [ ! -d ./vendor ]; then dep ensure; fi + if [ ! -d ./vendor ]; then dep ensure -vendor-only; fi CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o _output/cephfsplugin ./cephfs image-cephfsplugin: cephfsplugin