Structure folder properly in zip

This commit is contained in:
Spencer Killen 2023-04-08 18:26:35 -06:00
parent e83169c17d
commit 7d3ec04c63
Signed by: sjkillen
GPG Key ID: F307025B65C860BA
1 changed files with 4 additions and 1 deletions

View File

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