fix: misleading help text for 'llama stack build' and 'llama stack run'

current text for 'llama stack build' and 'llama stack run'
says that if no argument is passed to '--image-name' that
the active Conda environment will be used

in reality, the active enviroment is used whether it is
from conda, virtualenv, etc.

Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
This commit is contained in:
Nathan Weinberg 2025-04-09 10:17:05 -04:00
parent 2fcb70b789
commit d402623f96
3 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ class StackRun(Subcommand):
"--image-name",
type=str,
default=os.environ.get("CONDA_DEFAULT_ENV"),
help="Name of the image to run. Defaults to the current conda environment",
help="Name of the image to run. Defaults to the current environment",
)
self.parser.add_argument(
"--disable-ipv6",