mirror of https://github.com/mamba-org/mamba.git
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:
parent
91a2a2b868
commit
5e30f9f777
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue