Skip to content

Commit

Permalink
Implement pretty_name() for custom distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanDeMeyer committed Jan 5, 2025
1 parent 91bf2db commit 70a7790
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mkosi/distributions/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@


class Installer(DistributionInstaller):
@classmethod
def pretty_name(cls) -> str:
return "Custom"

@classmethod
def architecture(cls, arch: Architecture) -> str:
return str(arch)
Expand Down

0 comments on commit 70a7790

Please sign in to comment.