From 7d3ec04c6374e38a129ff1d1842de35981b2122a Mon Sep 17 00:00:00 2001 From: Spencer Killen Date: Sat, 8 Apr 2023 18:26:35 -0600 Subject: [PATCH] Structure folder properly in zip --- retopo_tools/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/retopo_tools/Makefile b/retopo_tools/Makefile index 6b5bf43..933a414 100644 --- a/retopo_tools/Makefile +++ b/retopo_tools/Makefile @@ -1,7 +1,10 @@ all: retopo_tools_addon.zip %.zip: *.py - zip -r $@ $^ + mkdir retop_tools + cp *.py retop_tools/ + zip -r $@ retop_tools/ + rm -rf retop_tools/ .PHONY: clean clean: