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:
parent
1e0dee5908
commit
4fdfcc12a4
2 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue