Fix preset installation

This commit is contained in:
2022-05-19 15:54:14 +02:00
parent c44082a06e
commit 268c46f981
+2 -1
View File
@@ -6,6 +6,7 @@ import shutil
def b3d_install_addon(): def b3d_install_addon():
"""Function to install addon with the blender locally set"""
env_name = 'FOLDER_TEST' env_name = 'FOLDER_TEST'
dependency = pathlib.Path(os.environ[env_name], "tests", "dependency.json") dependency = pathlib.Path(os.environ[env_name], "tests", "dependency.json")
with open(dependency) as f: with open(dependency) as f:
@@ -45,7 +46,7 @@ def b3d_install_preset():
path_locally = pathlib.Path(os.environ.get(env_name), "presets") path_locally = pathlib.Path(os.environ.get(env_name), "presets")
if path_locally.exists(): if path_locally.exists():
shutil.copytree(path_locally, path_preset.joinpath("moderlab")) shutil.copytree(path_locally, path_preset.joinpath("moderlab", "props"))
except KeyError: except KeyError:
print(f'Env. "{env_name}" doesn\'t exist') print(f'Env. "{env_name}" doesn\'t exist')