From 0ba8f02751cb92ac52b4bb3e1e2f20c49b105441 Mon Sep 17 00:00:00 2001 From: Mustafa Taher Date: Tue, 26 Sep 2023 11:00:43 +0300 Subject: [PATCH] make job dir if not extists Co-authored-by: Kayla Man <64118225+moonyuet@users.noreply.github.com> --- openpype/hosts/houdini/api/lib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openpype/hosts/houdini/api/lib.py b/openpype/hosts/houdini/api/lib.py index beee88c4b6e..95db280be88 100644 --- a/openpype/hosts/houdini/api/lib.py +++ b/openpype/hosts/houdini/api/lib.py @@ -764,6 +764,7 @@ def update_job_var_context(job_var_settings): job_path_template, get_current_context_template_data() ) job_path = job_path.replace("\\", "/") + os.makedirs(job_path, exist_ok=True) if job_path == "": # Set JOB path to HIP path if JOB path is enabled