From 90bc46dfe0f1616ca9c32ec114ffd7df0aa116c8 Mon Sep 17 00:00:00 2001 From: Romain Vigier Date: Tue, 15 Oct 2019 15:16:37 +0200 Subject: [PATCH] Make sure files are at root of the zip file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c6226c..d494235 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ install: build .PHONY: zip zip: build - zip -r ./build/$(UUID).zip ./build + zip -jr ./build/$(UUID).zip ./build rm -r ./build/$(UUID) .PHONY: clean