From 1f167987cbc6d9125e74f0766d39cfb49cbe2504 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Wed, 24 Jun 2015 10:58:42 -0700 Subject: [PATCH] Exclude ConsoleLogger and MLP* and OBJWriter plugins from the windows installer ConsoleLogger causes problems with the proper windows build and the other three are not currently working. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7204eedbf7..43074ab177 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ setup(name="Cura", options={"py2exe": {"skip_archive": False, "includes": includes}}) print("Coping Cura plugins.") -shutil.copytree(os.path.dirname(UM.__file__) + "/../plugins", "dist/plugins") +shutil.copytree(os.path.dirname(UM.__file__) + "/../plugins", "dist/plugins", ignore = shutil.ignore_patterns("ConsoleLogger", "OBJWriter", "MLPWriter", "MLPReader")) for path in os.listdir("plugins"): shutil.copytree("plugins/" + path, "dist/plugins/" + path) print("Coping resources.")