From 1c5c741e8779dc82cb82b6e0587f4b0a6174b5da Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 28 Sep 2016 17:59:40 -0400 Subject: [PATCH] Make sure /Users/zachary/gocode/bin exists before putting binary there --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2480d529..8dd91548 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ build-quick: # Same as 'build' but installs to $GOPATH/bin afterward install: build + mkdir -p $(GOPATH)/bin mv micro $(GOPATH)/bin # Same as 'build-all' but installs to $GOPATH/bin afterward @@ -24,6 +25,7 @@ install-all: runtime install # Same as 'build-quick' but installs to $GOPATH/bin afterward install-quick: build-quick + mkdir -p $(GOPATH)/bin mv micro $(GOPATH)/bin # Updates tcell