From 872bb0c43220941ecd98fa8c794d190458cf343b Mon Sep 17 00:00:00 2001 From: syui Date: Sun, 9 Nov 2025 17:32:33 +0900 Subject: [PATCH] add aishell --- build.zsh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.zsh b/build.zsh index aa92971..5645684 100755 --- a/build.zsh +++ b/build.zsh @@ -74,7 +74,10 @@ arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/gpt && cd g # Install aibot (aios core package) echo "Installing aibot..." -arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/aibot /bin/ && aibot ai && cd .. && rm -rf bot' +arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build --release && cp -rf ./target/release/aibot /bin/ && aibot ai && cd .. && rm -rf bot' + +echo "Installing aishell..." +arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/shell && cd shell && cargo build --release && cp -rf ./target/release/aishell /bin/ && cd .. && rm -rf shell' echo "✓ Arch Linux base complete" echo ""