Merge branch 'develop' into bugfix/add-missing-requirement

This commit is contained in:
Jakub Trllo 2025-09-11 10:14:14 +02:00 committed by GitHub
commit 6b0ecb6165
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -302,6 +302,11 @@ def _load_ayon_addons(log):
milestone_version = MOVED_ADDON_MILESTONE_VERSIONS.get(addon_name)
if use_dev_path:
addon_dir = dev_addon_info["path"]
if addon_dir:
addon_dir = os.path.expandvars(
addon_dir.format_map(os.environ)
)
if not addon_dir or not os.path.exists(addon_dir):
log.warning((
"Dev addon {} {} path does not exists. Path \"{}\""