cmds + lib: Code and log beautification #30

Merged
Jan Lindemann merged 3 commits from jan/feature/20260624-cmds-projects-cmdbuild-annotate-types into master 2026-06-24 21:37:47 +02:00 AGit
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 4fdfcc12a4 - Show all commits

cmds.pkg.CmdInstall + cmds.posix.CmdCopy: Fix help

The commands "packages install" and "packages copy" have nonsensical help texts, fix that.

Signed-off-by: Jan Lindemann <jan@janware.com>
Jan Lindemann 2026-06-18 10:22:56 +02:00
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61

View file

@ -29,7 +29,7 @@ class CmdInstall(Cmd): # export
'-F',
'--fixed-strings',
action = 'store_true',
help = "Don't expand platform.expand_macros macros in <names>",
help = "Don't expand macros in <names>",
)
async def _run(self, args: Namespace) -> None:

View file

@ -30,7 +30,7 @@ class CmdCopy(Cmd): # export
'-F',
'--fixed-strings',
action = 'store_true',
help = "Don't expand platform.expand_macros macros in <src> and <dst>",
help = "Don't expand macros in <src> and <dst>",
)
async def _run(self, args: Namespace) -> None: