From: Daan De Meyer Date: Sun, 5 Jan 2025 19:30:43 +0000 (+0100) Subject: Implement pretty_name() for custom distribution X-Git-Tag: v25~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7051715d8541d4d077a218f7445976225ec74d78;p=thirdparty%2Fmkosi.git Implement pretty_name() for custom distribution --- diff --git a/mkosi/distributions/custom.py b/mkosi/distributions/custom.py index 38f10fba8..fd31f5c08 100644 --- a/mkosi/distributions/custom.py +++ b/mkosi/distributions/custom.py @@ -10,6 +10,10 @@ from mkosi.log import die class Installer(DistributionInstaller): + @classmethod + def pretty_name(cls) -> str: + return "Custom" + @classmethod def architecture(cls, arch: Architecture) -> str: return str(arch)