mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
improve run_config assignation
Signed-off-by: Juanma Barea <juanmabareamartinez@gmail.com>
This commit is contained in:
parent
37f0f60ed4
commit
02bfe47ddd
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ def _run_stack_build_command_from_build_config(
|
|||
build_file_path,
|
||||
image_name,
|
||||
template_or_config=template_name or config_path or str(build_file_path),
|
||||
run_config=str(run_config_file) if run_config_file else None,
|
||||
run_config=run_config_file.as_posix() if run_config_file else None,
|
||||
)
|
||||
if return_code != 0:
|
||||
raise RuntimeError(f"Failed to build image {image_name}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue