Skip to content

Commit

Permalink
Allow specifying Nuke exe via environment
Browse files Browse the repository at this point in the history
This matches the updated naming we have for DCC adaptor packages

Signed-off-by: Alex Hughes <[email protected]>
  • Loading branch information
Ahuge committed Dec 2, 2024
1 parent 2351ff5 commit cf1b70e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deadline/nuke_adaptor/NukeAdaptor/adaptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cf1b70e

Please sign in to comment.