mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix check of oiio path for darwin
This commit is contained in:
parent
fb003bf9b0
commit
d31ba09b6c
1 changed files with 2 additions and 3 deletions
5
start.py
5
start.py
|
|
@ -451,9 +451,8 @@ def _validate_thirdparty_binaries():
|
|||
oiio_result = None
|
||||
if oiio_tool_path is not None:
|
||||
oiio_result = distutils.spawn.find_executable(oiio_tool_path)
|
||||
|
||||
if oiio_result is None:
|
||||
raise RuntimeError(error_msg.format("OpenImageIO"))
|
||||
if oiio_result is None:
|
||||
raise RuntimeError(error_msg.format("OpenImageIO"))
|
||||
|
||||
|
||||
def _process_arguments() -> tuple:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue