From a4c62673ee88d5e99458cbf7c1ca69fada50b389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Pre=C3=9F?= Date: Tue, 8 Dec 2015 15:09:04 +0100 Subject: [PATCH] Remove redundant -build-toolchain for gox Running `make release` on the provided Vagrant machine errors with an error. Removing the `-build-toolchain` fixes it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fea0478cd..80a0b836c 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ plugin-dev: generate mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN) release: updatedeps - gox -build-toolchain + gox @$(MAKE) bin # test runs the unit tests and vets the code