From dc9773001503241fb074a6596760cc048c983dd6 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Thu, 26 May 2016 13:52:30 -0500 Subject: [PATCH] Makefile: use instead of distributive --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0ee0151..e50b313 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ build: deps test: deps go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4 -package: test build - tar -zcvf bin/distributive.tar.gz distributive +package: build + tar -zcvf bin/$(NAME).tar.gz bin/$(NAME) .PHONY: all deps updatedeps build test package