maint: Clarify `env` subcommand documentation in help menu (cont'd) (#3539)

Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
This commit is contained in:
Julien Jerphanion 2024-10-15 18:30:24 +02:00 committed by GitHub
parent 9eb24012fc
commit 764f85f881
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ Quickstarts
config Configuration of micromamba
info Information about micromamba
constructor Commands to support using micromamba in constructor
env See `mamba/micromamba env --help`.
env See `mamba/micromamba env --help`
activate Activate an environment
run Run an executable in an environment
ps Show, inspect or kill running processes

View File

@ -143,7 +143,7 @@ __fish_mamba_complete_subcmds '__fish_mamba_has_command' '
config Configuration of micromamba
info Information about micromamba
constructor Commands to support using micromamba in constructor
env Access information about environments
env See `mamba/micromamba env --help`
activate Activate an environment
run Run an executable in an environment
ps Show, inspect or kill running processes

View File

@ -87,7 +87,7 @@ set_umamba_command(CLI::App* com, mamba::Configuration& config)
);
set_constructor_command(constructor_subcom, config);
CLI::App* env_subcom = com->add_subcommand("env", "Access information about environments");
CLI::App* env_subcom = com->add_subcommand("env", "See `mamba/micromamba env --help`");
set_env_command(env_subcom, config);
CLI::App* activate_subcom = com->add_subcommand("activate", "Activate an environment");