[elbe-devel] [PATCH] elbepack: check_updates: fix check for "auto" attribute
Martin Kaistra
martin.kaistra at linutronix.de
Tue Apr 1 15:03:14 CEST 2025
Commit c3b5e635177a ("elbepack: check_updates: use helper for boolean
attributes") accidentally inverted the check for the "auto" attribute.
As a result only packages with this attribute would be taken into
account for the update checking.
Restore the original logic.
Fixes: c3b5e635177a ("elbepack: check_updates: use helper for boolean attributes")
Signed-off-by: Martin Kaistra <martin.kaistra at linutronix.de>
---
elbepack/commands/check_updates.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/elbepack/commands/check_updates.py b/elbepack/commands/check_updates.py
index 598b5859..50ced611 100644
--- a/elbepack/commands/check_updates.py
+++ b/elbepack/commands/check_updates.py
@@ -72,7 +72,7 @@ def run_command(argv):
for p in fullp:
pname = p.et.text
- if p.bool_attr('auto'):
+ if not p.bool_attr('auto'):
v.mark_install(pname)
errors = 0
--
2.39.5
More information about the elbe-devel
mailing list