From 9cb4a69032824832b81be07bf5e9a1424da18ddb Mon Sep 17 00:00:00 2001 From: Iain Campbell Date: Mon, 10 Oct 2016 21:24:14 +0100 Subject: [PATCH] Makefile install target assumes $GOPATH_BIN exists This was not the case on my install, so `bin` became the binary. Chucked a `mkdir -p` in there! --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 64213386b..581e212ed 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ check: pkg/asset/internal/templates.go @go test -v $(shell go list ./... | grep -v '/vendor/') install: _output/bin/$(LOCAL_OS)/bootkube + mkdir -p $(GOPATH_BIN) cp $< $(GOPATH_BIN) _output/bin/%/bootkube: LDFLAGS=-X github.com/coreos/bootkube/pkg/version.Version=$(shell $(CURDIR)/build/git-version.sh)