From 729ba86d43ba31072644952adf6fa67d3a4a5e48 Mon Sep 17 00:00:00 2001 From: Del Wang Date: Thu, 5 Jun 2025 00:37:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E7=AD=89=E5=BE=85=E6=97=B6=E9=95=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/kws/boot.sh | 6 ++++-- packages/client-rust/boot.sh | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/examples/kws/boot.sh b/examples/kws/boot.sh index a66f0ac..79f64ec 100644 --- a/examples/kws/boot.sh +++ b/examples/kws/boot.sh @@ -1,5 +1,7 @@ #! /bin/sh +exec > /dev/null 2>&1 + cat << 'EOF' ▄▖ ▖▖▘ ▄▖▄▖ @@ -13,9 +15,9 @@ EOF set -e -echo "🤫 等待网络连接中... (30s)" +echo "🤫 等待网络连接中..." -sleep 30 +sleep 5 MIN_SPACE_MB=32 DOWNLOAD_BASE_URL="https://gitee.com/idootop/artifacts/releases/download/open-xiaoai-kws" diff --git a/packages/client-rust/boot.sh b/packages/client-rust/boot.sh index 8faed4c..dd2e558 100644 --- a/packages/client-rust/boot.sh +++ b/packages/client-rust/boot.sh @@ -1,5 +1,7 @@ #! /bin/sh +exec > /dev/null 2>&1 + cat << 'EOF' ▄▖ ▖▖▘ ▄▖▄▖ @@ -13,9 +15,9 @@ EOF set -e -echo "🤫 等待网络连接中... (30s)" +echo "🤫 等待网络连接中..." -sleep 30 +sleep 5 DOWNLOAD_BASE_URL="https://gitee.com/idootop/artifacts/releases/download/open-xiaoai-client"