From 070c38520bd20fd2bc5bb4a69cd8afe9e11b1946 Mon Sep 17 00:00:00 2001 From: Cory Bennett Date: Sat, 1 Oct 2016 00:43:12 -0700 Subject: [PATCH] fix name for branch --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 31f4405..23e6322 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ GOBIN ?= $(CWD) CURVER ?= $(patsubst v%,%,$(shell [ -d .git ] && git describe --abbrev=0 --tags || grep ^\#\# CHANGELOG.md | awk '{print $$2; exit}')) LDFLAGS := -w -PACKAGE=github.com/Netflix-Skunkworks/go-jira +PACKAGE=gopkg.in/Netflix-Skunkworks/go-jira.v1 # use 'make debug' and you can get a debuggable golang binary # see https://golang.org/doc/gdb @@ -44,7 +44,7 @@ else endif build: $(GOPATH)/src/$(PACKAGE) - cd $(GOPATH)/src/$(PACKAGE) && $(GOBUILD) -o $(BIN) main.go + cd $(GOPATH)/src/$(PACKAGE) && $(GOBUILD) -o $(BIN) debug: $(MAKE) DEBUG=1 build