From 96cabf1a0af748f615746c3f7bc4476ec67bac41 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Wed, 11 Jul 2018 11:38:50 -0500 Subject: [PATCH] Use `dep ensure -vendor-only` for build repeatability. Fixes #1490. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 90e4700df..1e4046bbc 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ clean: # Set up vendor directory using `dep` vendor: Gopkg.toml $(MAKE) require-dep - dep ensure + dep ensure -vendor-only touch vendor # Run test suite