From ae1f24188721bae2052123651ff2c0a138df9717 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 10 Sep 2020 13:12:04 -0500 Subject: [PATCH] Update zip file creation to use native zip command. (#319) Fixes #318 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0bdcf74..58c1e69 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ dist: $(DISTFILES) todo.sh chmod +x $(DISTNAME)/todo.sh tar cf $(DISTNAME).tar $(DISTNAME) gzip -f -9 $(DISTNAME).tar - tar cf $(DISTNAME).zip $(DISTNAME) + zip -r -9 $(DISTNAME).zip $(DISTNAME) rm -r $(DISTNAME) .PHONY: clean