Skip to content

Commit

Permalink
maint: Clarify env subcommand documentation in help menu (cont'd) (#…
Browse files Browse the repository at this point in the history
…3539)

Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
  • Loading branch information
jjerphan authored Oct 15, 2024
1 parent 9eb2401 commit 764f85f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/user_guide/micromamba.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libmamba/data/mamba.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion micromamba/src/umamba.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 764f85f

Please sign in to comment.