From cf1b70e168505bb89e1269c634081875498c0dc5 Mon Sep 17 00:00:00 2001 From: Alex Hughes Date: Mon, 2 Dec 2024 14:01:12 -0800 Subject: [PATCH] Allow specifying Nuke exe via environment This matches the updated naming we have for DCC adaptor packages Signed-off-by: Alex Hughes --- src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py b/src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py index 60eb326..d61fff3 100644 --- a/src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py +++ b/src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py @@ -432,7 +432,7 @@ def _start_nuke_client(self) -> None: FileNotFoundError: If the nuke_client.py file could not be found. KeyError: If a configuration for the given platform and version does not exist. """ - nuke_exe = os.environ.get("NUKE_ADAPTOR_NUKE_EXECUTABLE", "nuke") + nuke_exe = os.environ.get("NUKE_EXECUTABLE", "nuke") regexhandler = RegexHandler(self.regex_callbacks) # Add the Open Job Description namespace directory to PYTHONPATH, so that adaptor_runtime_client