From 78436370c82e31686754383cd0ddc6e8d1a4a9d1 Mon Sep 17 00:00:00 2001 From: Salman Paracha Date: Fri, 2 Jan 2026 10:57:41 -0800 Subject: [PATCH] fixing echo statement for build --- cli/planoai/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/planoai/main.py b/cli/planoai/main.py index 2130dce1..a2737883 100644 --- a/cli/planoai/main.py +++ b/cli/planoai/main.py @@ -81,7 +81,7 @@ def main(ctx, version): @click.command() def build(): - """Build Arch from source. Works from any directory within the repo.""" + """Build Plano from source. Works from any directory within the repo.""" # Find the repo root repo_root = find_repo_root() @@ -112,7 +112,7 @@ def build(): ], check=True, ) - click.echo("archgw image built successfully.") + click.echo("plano image built successfully.") except subprocess.CalledProcessError as e: click.echo(f"Error building plano image: {e}") sys.exit(1)