From bd05f948f44e493322272262fcb366c58f08110a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 4 Jan 2026 17:10:57 +0800 Subject: Add deploy script for CLI build on Linux The previous method used `cargo build` directly. Now we use the existing `deploy.sh` script, which handles the build and installation in a standardized way across platforms. --- setup/linux/inst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/linux/inst.sh b/setup/linux/inst.sh index bbebeb8..519121b 100644 --- a/setup/linux/inst.sh +++ b/setup/linux/inst.sh @@ -47,8 +47,8 @@ chmod +x setup.sh # Build CLI echo "Building CLI..." cd ../CommandLine -cargo build --release -cargo export +chmod +x deploy.sh +./deploy.sh # Configure shell to include CLI in PATH echo "Now adding JustEnoughVCS CLI to your environment. Please select your target shell:" -- cgit