mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
hound fixes
This commit is contained in:
parent
9d8cf26087
commit
30537adba6
2 changed files with 4 additions and 2 deletions
|
|
@ -891,7 +891,8 @@ class BootstrapRepos:
|
|||
# copy file to destination
|
||||
self._print("Copying zip to destination ...")
|
||||
copyfile(
|
||||
pype_version.path.as_posix(), destination.parent.as_posix())
|
||||
pype_version.path.as_posix(),
|
||||
destination.parent.as_posix())
|
||||
except OSError as e:
|
||||
self._print(
|
||||
"cannot copy version to user data directory", LOG_ERROR,
|
||||
|
|
|
|||
|
|
@ -73,7 +73,8 @@ class InstallThread(QThread):
|
|||
detected = bs.find_pype(include_zips=True)
|
||||
|
||||
if detected:
|
||||
if PypeVersion(version=local_version, path=Path()) < detected[-1]:
|
||||
if PypeVersion(
|
||||
version=local_version, path=Path()) < detected[-1]:
|
||||
self.message.emit((
|
||||
f"Latest installed version {detected[-1]} is newer "
|
||||
f"then currently running {local_version}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue