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 <rbryant@redhat.com>
This commit is contained in:
Russell Bryant 2024-09-27 17:00:25 -04:00 committed by GitHub
parent 5828ffd53b
commit f70c88ab7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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