mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
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:
parent
6d21ff40f5
commit
1f167987cb
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -52,7 +52,7 @@ setup(name="Cura",
|
||||||
options={"py2exe": {"skip_archive": False, "includes": includes}})
|
options={"py2exe": {"skip_archive": False, "includes": includes}})
|
||||||
|
|
||||||
print("Coping Cura plugins.")
|
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"):
|
for path in os.listdir("plugins"):
|
||||||
shutil.copytree("plugins/" + path, "dist/plugins/" + path)
|
shutil.copytree("plugins/" + path, "dist/plugins/" + path)
|
||||||
print("Coping resources.")
|
print("Coping resources.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue