From d4eb91dae84efae9edaeeda2ada75376d3c8f1f5 Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Tue, 22 Feb 2022 00:02:08 +0100 Subject: [PATCH] respect override_storage --- kiwi_scp/project.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kiwi_scp/project.py b/kiwi_scp/project.py index 0801dc3..a5b1bf7 100644 --- a/kiwi_scp/project.py +++ b/kiwi_scp/project.py @@ -43,6 +43,9 @@ class Project: kiwi_config_dir: Path = kiwi_instance_dir.joinpath(CONFIG_DIRECTORY_NAME) kiwi_project_dir: Path = kiwi_instance_dir.joinpath(project_name) + if self.config.override_storage is not None: + kiwi_project_dir = self.config.override_storage.directory + result: Dict[str, Any] = { "cwd": str(directory), "env": {