Update zip file creation to use native zip command. (#319)

Fixes #318
This commit is contained in:
Ali Karbassi
2020-09-10 13:12:04 -05:00
committed by GitHub
parent 7f3ad0d361
commit ae1f241887

View File

@@ -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