mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 20:14:13 +00:00
Bug fix
This commit is contained in:
parent
2f6ce08315
commit
ab46465070
2 changed files with 5 additions and 2 deletions
|
@ -112,7 +112,9 @@ class StackBuild(Subcommand):
|
|||
to_write = json.loads(json.dumps(build_config.dict(), cls=EnumEncoder))
|
||||
f.write(yaml.dump(to_write, sort_keys=False))
|
||||
|
||||
build_image(build_config, build_file_path)
|
||||
return_code = build_image(build_config, build_file_path)
|
||||
if return_code != 0:
|
||||
return
|
||||
|
||||
cprint(
|
||||
f"Build spec configuration saved at {str(build_file_path)}",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue