From e0fdb5190d4ad97d052107edb461fe2bf5547d9f Mon Sep 17 00:00:00 2001 From: Lachlan Donald Date: Thu, 3 Sep 2015 11:44:05 +1000 Subject: [PATCH] Add release target back to Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index baf774bea..24cc1c4a7 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,6 @@ ifeq "$(OS)" "Darwin" codesign -s $(CERT) $(GOBIN)/aws-vault endif -# release: sign -# cp $(BIN) $(BIN)-$(OS)-$(ARCH) -# @echo Upload $(BIN)-$(OS)-$(ARCH) as $(VERSION) \ No newline at end of file +release: build + cp aws-vault aws-vault-$(OS)-$(ARCH) + @echo Upload aws-vault-$(OS)-$(ARCH) as $(VERSION) \ No newline at end of file