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.
This commit is contained in:
Arjen Hiemstra 2015-06-24 10:58:42 -07:00
parent 6d21ff40f5
commit 1f167987cb

View file

@ -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.")