]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Fix variable reference
authorSeptatrix <24257556+Septatrix@users.noreply.github.com>
Mon, 12 Feb 2024 23:24:51 +0000 (00:24 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 20 Feb 2024 08:50:07 +0000 (09:50 +0100)
mkosi/config.py

index 738ec8aceae3800491cfc0e74f8394b236fce49e..a6ef9c5a31c39fa27594579e448bdd2095d5ecb9 100644 (file)
@@ -310,7 +310,7 @@ class Architecture(StrEnum):
         }.get(s)
 
         if not a:
-            die(f"Architecture {a} is not supported")
+            die(f"Architecture {s} is not supported")
 
         return a