mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
🐛 don't exit on missing dependency
This commit is contained in:
parent
b0bf9a4a5c
commit
e03d021536
1 changed files with 4 additions and 2 deletions
|
|
@ -130,8 +130,10 @@ def install_thirdparty(pyproject, openpype_root, platform_name):
|
|||
_print("trying to get universal url for all platforms")
|
||||
url = v.get("url")
|
||||
if not url:
|
||||
_print("cannot get url", 1)
|
||||
sys.exit(1)
|
||||
_print("cannot get url for all platforms", 1)
|
||||
_print((f"Warning: {k} is not installed for current platform "
|
||||
"and it might be missing in the build"), 1)
|
||||
continue
|
||||
else:
|
||||
url = v.get(platform_name).get("url")
|
||||
destination_path = destination_path / platform_name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue