maint: Clarify `env` subcommand documentation in help menu (#3502)

Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
Co-authored-by: Hind-M <70631848+Hind-M@users.noreply.github.com>
This commit is contained in:
Julien Jerphanion 2024-10-15 17:07:20 +02:00 committed by GitHub
parent 91a2a2b868
commit 5e30f9f777
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 List 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

@ -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 List environments
env Access information about environments
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", "List environments");
CLI::App* env_subcom = com->add_subcommand("env", "Access information about environments");
set_env_command(env_subcom, config);
CLI::App* activate_subcom = com->add_subcommand("activate", "Activate an environment");