Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <a.hiemstra@ultimaker.com>2015-06-24 20:58:42 +0300
committerArjen Hiemstra <a.hiemstra@ultimaker.com>2015-06-24 20:58:42 +0300
commit1f167987cbc6d9125e74f0766d39cfb49cbe2504 (patch)
tree6cbc1cc4a23749276dde5e769a188b931e86ac9c /setup.py
parent6d21ff40f538652ff013b124cd9492f1d19919da (diff)
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.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
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.")