mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
removed '_CUSTOM' from env keys
This commit is contained in:
parent
e3c2bb5a5e
commit
def2fc4bc8
1 changed files with 2 additions and 2 deletions
|
|
@ -250,7 +250,7 @@ def get_oiio_tools_path(tool="oiiotool"):
|
|||
if CachedToolPaths.is_tool_cached(tool):
|
||||
return CachedToolPaths.get_executable_path(tool)
|
||||
|
||||
custom_paths_str = os.environ.get("OPENPYPE_CUSTOM_OIIO_PATHS") or ""
|
||||
custom_paths_str = os.environ.get("OPENPYPE_OIIO_PATHS") or ""
|
||||
tool_executable_path = find_tool_in_custom_paths(
|
||||
custom_paths_str.split(os.pathsep),
|
||||
tool,
|
||||
|
|
@ -330,7 +330,7 @@ def get_ffmpeg_tool_path(tool="ffmpeg"):
|
|||
if CachedToolPaths.is_tool_cached(tool):
|
||||
return CachedToolPaths.get_executable_path(tool)
|
||||
|
||||
custom_paths_str = os.environ.get("OPENPYPE_CUSTOM_FFMPEG_PATHS") or ""
|
||||
custom_paths_str = os.environ.get("OPENPYPE_FFMPEG_PATHS") or ""
|
||||
tool_executable_path = find_tool_in_custom_paths(
|
||||
custom_paths_str.split(os.pathsep),
|
||||
tool,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue