From 0c750102c6443fc3aa1df1cedacba7e2473c7e1d Mon Sep 17 00:00:00 2001 From: Martin Hickey Date: Thu, 14 Nov 2024 17:56:03 +0000 Subject: [PATCH] Fix build configure deprecation message (#456) # What does this PR do? Removes from the `llama build configure` deprecation message the `--configure` flag because the `llama stack run` command does not support this flag. Signed-off-by: Martin Hickey --- llama_stack/cli/stack/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/configure.py b/llama_stack/cli/stack/configure.py index 7aa1bb6ed..11d3f705a 100644 --- a/llama_stack/cli/stack/configure.py +++ b/llama_stack/cli/stack/configure.py @@ -40,7 +40,7 @@ class StackConfigure(Subcommand): self.parser.error( """ DEPRECATED! llama stack configure has been deprecated. - Please use llama stack run --config instead. + Please use llama stack run instead. Please see example run.yaml in /distributions folder. """ )