Don't crash when packageOperations is empty
This commit is contained in:
parent
a0a3b4dc49
commit
fdd84d1f99
@ -76,8 +76,9 @@ def run():
|
|||||||
for entry in operations:
|
for entry in operations:
|
||||||
run_operations(pkgman, entry)
|
run_operations(pkgman, entry)
|
||||||
|
|
||||||
operations = libcalamares.globalstorage.value("packageOperations")
|
if libcalamares.globalstorage.contains("pagkageOperations"):
|
||||||
for entry in operations:
|
operations = libcalamares.globalstorage.value("packageOperations")
|
||||||
run_operations(pkgman, entry)
|
for entry in operations:
|
||||||
|
run_operations(pkgman, entry)
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
Loading…
Reference in New Issue
Block a user