Skip to content

Commit

Permalink
fixed: PackageManager hangs on remove; fixed: PackageManager not sett…
Browse files Browse the repository at this point in the history
…ing no file set for incomplete fs
  • Loading branch information
kwindrem committed Feb 15, 2024
1 parent 701a077 commit 2e50b48
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions PackageManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,6 @@ def RemovePackage (cls, packageName=None, packageIndex=None ):
toPackage.InstallPending = fromPackage.InstallPending
toPackage.AutoInstallOk = fromPackage.AutoInstallOk
toPackage.FileSetOk = fromPackage.FileSetOk
toPackage.AutoRemove = fromPackage.AutoRemove

toIndex += 1
fromIndex += 1
Expand Down Expand Up @@ -1898,6 +1897,8 @@ def UpdateVersionsAndFlags (self):
flagFile = packageDir + "/FileSets/" + VenusVersion + "/INCOMPLETE"
if os.path.exists (flagFile):
self.FileSetOk = False
self.SetIncompatible ('NO_FILE_SET')
incompatible = True
else:
self.FileSetOk = True

Expand Down Expand Up @@ -3527,7 +3528,6 @@ def mainLoop():
if not packageOperationOk:
packageChecksSkipped = True


if installOk:
actionMessage = "installing " + packageName + " ..."
PushAction ( command='install' + ':' + packageName, source='AUTO' )
Expand Down
2 changes: 1 addition & 1 deletion blindInstall/SetupHelperVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v6.5
v6.6
4 changes: 4 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v6.6:
fixed: PackageManager hangs on remove
fixed: PackageManager not setting no file set for incomplete fs

v6.5:
fixed: package download failure not always reported on the GUI

Expand Down
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 @@
v6.5
v6.6

0 comments on commit 2e50b48

Please sign in to comment.