From 764f85f88186d28f5e0822b623b9dd06e01bb1cc Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Tue, 15 Oct 2024 18:30:24 +0200 Subject: [PATCH] maint: Clarify `env` subcommand documentation in help menu (cont'd) (#3539) Signed-off-by: Julien Jerphanion --- docs/source/user_guide/micromamba.rst | 2 +- libmamba/data/mamba.fish | 2 +- micromamba/src/umamba.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/user_guide/micromamba.rst b/docs/source/user_guide/micromamba.rst index f5f0adf7e3..b92b0cc281 100644 --- a/docs/source/user_guide/micromamba.rst +++ b/docs/source/user_guide/micromamba.rst @@ -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 diff --git a/libmamba/data/mamba.fish b/libmamba/data/mamba.fish index 2e3c534847..c7bd3ce754 100644 --- a/libmamba/data/mamba.fish +++ b/libmamba/data/mamba.fish @@ -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 diff --git a/micromamba/src/umamba.cpp b/micromamba/src/umamba.cpp index 08c2b3964e..73268e2725 100644 --- a/micromamba/src/umamba.cpp +++ b/micromamba/src/umamba.cpp @@ -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");