From d61590ffcf8b7f4eaa511a831f6fd5878dcd72b1 Mon Sep 17 00:00:00 2001 From: Romain Vigier Date: Wed, 16 Oct 2019 10:12:57 +0200 Subject: [PATCH] Rewrite zip command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc80a21..64a3bf7 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ install: uninstall build .PHONY: zip zip: build - zip -jr ./build/$(UUID).$(VERSION).zip ./build + cd ./build/$(UUID) && zip -r ../$(UUID).$(VERSION).zip . rm -r ./build/$(UUID) .PHONY: clean