From acc989de65815db762142fdb1caaa648a02c5847 Mon Sep 17 00:00:00 2001
From: Caleb Connolly <caleb@postmarketos.org>
Date: Sun, 27 Oct 2024 18:59:04 +0100
Subject: [PATCH] commands: getattr autoinstall (MR 2461)

args.autoinstall attribute might not exist, use getattr like for others,
and add a fixme about the default value...

Fixes: https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/issues/2476
Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
---
 pmb/commands/__init__.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pmb/commands/__init__.py b/pmb/commands/__init__.py
index fe881d722..3aec50a11 100644
--- a/pmb/commands/__init__.py
+++ b/pmb/commands/__init__.py
@@ -68,7 +68,9 @@ def run_command(args: PmbArgs):
         case "flasher":
             command = Flasher(
                 args.action_flasher,
-                args.autoinstall,
+                # FIXME: defaults copied from pmb/helpers/arguments.py
+                # we should have these defaults defined in one place!
+                getattr(args, "autoinstall", True),
                 getattr(args, "cmdline", None),
                 args.flash_method,
                 getattr(args, "no_reboot", None),
-- 
GitLab