From 02bfe47ddd414da0c24e678b84648408d8e2fdf2 Mon Sep 17 00:00:00 2001 From: Juanma Barea Date: Wed, 25 Jun 2025 15:13:03 +0200 Subject: [PATCH] improve run_config assignation Signed-off-by: Juanma Barea --- llama_stack/cli/stack/_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/_build.py b/llama_stack/cli/stack/_build.py index 181886a5d..c51fc649c 100644 --- a/llama_stack/cli/stack/_build.py +++ b/llama_stack/cli/stack/_build.py @@ -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}")