mirror of https://github.com/mamba-org/mamba.git
maint: Clarify `env` subcommand documentation in help menu (cont'd) (#3539)
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
This commit is contained in:
parent
9eb24012fc
commit
764f85f881
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue