From 7fcfcbfd76377e787d989821a41dc2ce1d255229 Mon Sep 17 00:00:00 2001 From: Eric Huang Date: Fri, 20 Jun 2025 15:14:12 -0700 Subject: [PATCH] fix: stack build # What does this PR do? ## Test Plan --- llama_stack/cli/stack/_build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/cli/stack/_build.py b/llama_stack/cli/stack/_build.py index f6f72946a..7ade6f17a 100644 --- a/llama_stack/cli/stack/_build.py +++ b/llama_stack/cli/stack/_build.py @@ -408,10 +408,10 @@ def _run_stack_build_command_from_build_config( shutil.copy(path, run_config_file) cprint("Build Successful!", color="green", file=sys.stderr) - cprint(f"You can find the newly-built template here: {template_path}", color="light_blue", file=sys.stderr) + cprint(f"You can find the newly-built template here: {template_path}", color="blue", file=sys.stderr) cprint( "You can run the new Llama Stack distro via: " - + colored(f"llama stack run {template_path} --image-type {build_config.image_type}", "light_blue"), + + colored(f"llama stack run {template_path} --image-type {build_config.image_type}", "blue"), color="green", file=sys.stderr, )