From a086c0b16ccc000649f8a906b3aaf65d50a10a3b Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Thu, 3 Oct 2024 10:43:41 -0700 Subject: [PATCH] comments --- llama_stack/cli/stack/configure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/configure.py b/llama_stack/cli/stack/configure.py index b5ef6b581..7fbfaf769 100644 --- a/llama_stack/cli/stack/configure.py +++ b/llama_stack/cli/stack/configure.py @@ -77,8 +77,9 @@ class StackConfigure(Subcommand): conda_envs = json.loads(output.decode("utf-8")) for x in conda_envs: - if x.endswith(f"llamastack-{args.config}"): + if x.endswith(f"/llamastack-{args.config}"): conda_dir = Path(x) + break build_config_file = Path(conda_dir) / f"{args.config}-build.yaml"