forked from phoenix-oss/llama-stack-mirror
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:
parent
5828ffd53b
commit
f70c88ab7a
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class StackConfigure(Subcommand):
|
||||||
# we have regenerated the build config file with script, now check if it exists
|
# we have regenerated the build config file with script, now check if it exists
|
||||||
if return_code != 0:
|
if return_code != 0:
|
||||||
self.parser.error(
|
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
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue