From 217bab1a4355916d4a37882bec47db643dc13e1e Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Tue, 3 Mar 2026 14:55:20 -0800 Subject: [PATCH] make build default to native, --docker for Docker image --- cli/planoai/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/planoai/main.py b/cli/planoai/main.py index c3f941e7..82d2039f 100644 --- a/cli/planoai/main.py +++ b/cli/planoai/main.py @@ -132,12 +132,12 @@ def main(ctx, version): @click.command() @click.option( - "--native", + "--docker", default=False, - help="Build WASM plugins and brightstaff natively (requires Rust toolchain).", + help="Build the Docker image instead of native binaries.", is_flag=True, ) -def build(native): +def build(docker): """Build Plano from source. Works from any directory within the repo.""" # Find the repo root @@ -148,7 +148,7 @@ def build(native): ) sys.exit(1) - if native: + if not docker: import shutil crates_dir = os.path.join(repo_root, "crates")