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"