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>
This commit is contained in:
Jan Lindemann 2026-06-18 10:22:56 +02:00
commit 4fdfcc12a4
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61
2 changed files with 2 additions and 2 deletions

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: