commit e6636acf12cee7bc6516443e3e3169470466a6b5 parent eecad80e38728aa48f8cb78dc5e88a1afd9b0303 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Mon, 27 Apr 2026 10:31:41 +0200 build: exclude .DS_Store from plugin zip package Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ test: package: rm -f $(ZIPFILE) - zip -r $(ZIPFILE) $(PLUGIN_NAME)/ -x '*/__pycache__/*' '*/__pycache__/' + zip -r $(ZIPFILE) $(PLUGIN_NAME)/ -x '*/__pycache__/*' '*/__pycache__/' '*/.DS_Store' clean: rm -f $(ZIPFILE)