]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Implement pretty_name() for custom distribution
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 5 Jan 2025 19:30:43 +0000 (20:30 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 5 Jan 2025 19:36:46 +0000 (20:36 +0100)
mkosi/distributions/custom.py

index 38f10fba8119fdd11eedb33c54d6be861e9bed8a..fd31f5c0830d53fe5757e1c60ba8d113d0a46431 100644 (file)
@@ -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)