Added help messages to cli commands

This commit is contained in:
2021-04-12 20:02:45 +02:00
parent f8f5d46491
commit 7eca382cb3
11 changed files with 46 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ class BuildService(CommandABC):
@property
def help_message(self) -> str:
return textwrap.dedent("""\
Copies an python app into an output directory named build/ at the given output path. Must be executed within a CPL workspace or project directory
usage: cpl build
""")
def run(self, args: list[str]):