From 4fdfcc12a41d5e596d69bdc2d0b0b6caa6e135fe Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 18 Jun 2026 10:22:56 +0200 Subject: [PATCH] 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 --- src/python/jw/pkg/cmds/pkg/CmdInstall.py | 2 +- src/python/jw/pkg/cmds/posix/CmdCopy.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/jw/pkg/cmds/pkg/CmdInstall.py b/src/python/jw/pkg/cmds/pkg/CmdInstall.py index 916c5d7b..dbeaebcf 100644 --- a/src/python/jw/pkg/cmds/pkg/CmdInstall.py +++ b/src/python/jw/pkg/cmds/pkg/CmdInstall.py @@ -29,7 +29,7 @@ class CmdInstall(Cmd): # export '-F', '--fixed-strings', action = 'store_true', - help = "Don't expand platform.expand_macros macros in ", + help = "Don't expand macros in ", ) async def _run(self, args: Namespace) -> None: diff --git a/src/python/jw/pkg/cmds/posix/CmdCopy.py b/src/python/jw/pkg/cmds/posix/CmdCopy.py index d52a1fc7..e38c15bd 100644 --- a/src/python/jw/pkg/cmds/posix/CmdCopy.py +++ b/src/python/jw/pkg/cmds/posix/CmdCopy.py @@ -30,7 +30,7 @@ class CmdCopy(Cmd): # export '-F', '--fixed-strings', action = 'store_true', - help = "Don't expand platform.expand_macros macros in and ", + help = "Don't expand macros in and ", ) async def _run(self, args: Namespace) -> None: