Skip to content

Commit

Permalink
fixed: PackageManager.py crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed Apr 1, 2024
1 parent 640810e commit 511f8c3
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PackageManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -2153,7 +2153,7 @@ def UpdateVersionsAndFlags (self, doConflictChecks=True):
doChecks = True
if doChecks:
# avoid starting a new check if there is something pending
if not self.InstallPending and not self.DownloadPending
if not self.InstallPending and not self.DownloadPending \
and os.path.exists ("/data/" + packageName + "/setup"):
PushAction ( command='check' + ':' + packageName, source='AUTO' )
self.lastSetupCheckTime = time.time ()
Expand Down
2 changes: 1 addition & 1 deletion blindInstall/SetupHelperVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.0~8
v8.0~9
Binary file modified venus-data-UninstallPackages.tgz
Binary file not shown.
Binary file modified venus-data.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.0~8
v8.0~9

0 comments on commit 511f8c3

Please sign in to comment.