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
This commit is contained in:
Łukasz Mierzwa
2017-03-30 13:21:24 -07:00
parent c5398ab43d
commit a0375a243d

View File

@@ -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 =================================