From a0375a243d56207de8643dfd2db2323b1b604c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Thu, 30 Mar 2017 13:21:24 -0700 Subject: [PATCH] Fix 'make vendor-update' to work as documented make vendor-update should update everything inside the vendor dir, to do this 'govendor fetch' needs to be used, current command ('govendor update') is used to copy packages from /home/lukasz/work/go to vendor dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d2ab8519..2c2a340d1 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ vendor: .build/vendor.ok .PHONY: vendor-update vendor-update: .build/vendor.ok - govendor update +v + govendor fetch +v #======================== asset helper targets =================================