Remove redundant -build-toolchain for gox
Running `make release` on the provided Vagrant machine errors with an error. Removing the `-build-toolchain` fixes it.
This commit is contained in:
parent
d69abbaeda
commit
a4c62673ee
2
Makefile
2
Makefile
|
@ -28,7 +28,7 @@ plugin-dev: generate
|
||||||
mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN)
|
mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN)
|
||||||
|
|
||||||
release: updatedeps
|
release: updatedeps
|
||||||
gox -build-toolchain
|
gox
|
||||||
@$(MAKE) bin
|
@$(MAKE) bin
|
||||||
|
|
||||||
# test runs the unit tests and vets the code
|
# test runs the unit tests and vets the code
|
||||||
|
|
Loading…
Reference in New Issue