mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fixed zip check
This commit is contained in:
parent
bc301fc789
commit
105e6241b4
1 changed files with 1 additions and 1 deletions
|
|
@ -1158,7 +1158,7 @@ class BootstrapRepos:
|
|||
zip_version = None
|
||||
for local_version in local_versions:
|
||||
if local_version == version:
|
||||
if local_version.suffix.lower() == ".zip":
|
||||
if local_version.path.suffix.lower() == ".zip":
|
||||
zip_version = local_version
|
||||
else:
|
||||
return local_version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue