From 957e97dfb0678b6a43c00c5d9d07c205febc1802 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 26 Apr 2016 21:23:52 -0400 Subject: [PATCH] Update makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ca43c60c..7a799c98 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,6 @@ VERSION = "$(shell git rev-parse --short HEAD)" -deps: - go get -d ./cmd/micro - build: deps runtime tcell go build -ldflags "-X main.Version=$(VERSION)" -o micro ./cmd/micro @@ -12,7 +9,10 @@ install: build mv micro $(GOPATH)/bin tcell: - git -C $(GOPATH)/src/github.com/gdamore/tcell pull + git -C $(GOPATH)/src/github.com/zyedidia/tcell pull + +deps: + go get -d ./cmd/micro runtime: go get -u github.com/jteeuwen/go-bindata/...