From f70c88ab7a272bf0c52f70c8d2ad8a0ec09265e3 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 27 Sep 2024 17:00:25 -0400 Subject: [PATCH] configure: Fix a error msg typo (#131) I got this error message and noticed the typo in the message. It directed the user to run `llama stack build first`, which is not a valid command. Signed-off-by: Russell Bryant --- 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 135962d4d..5b1fbba86 100644 --- a/llama_stack/cli/stack/configure.py +++ b/llama_stack/cli/stack/configure.py @@ -99,7 +99,7 @@ class StackConfigure(Subcommand): # we have regenerated the build config file with script, now check if it exists if return_code != 0: self.parser.error( - f"Failed to configure container {docker_image} with return code {return_code}. Please run `llama stack build first`. " + f"Failed to configure container {docker_image} with return code {return_code}. Please run `llama stack build` first. " ) return