refactor: 统一构建/发布脚本输出样式,更简约

- 添加 build.sh 调用脚本
- 移除装饰性分隔线和标题
- 移除进度输出,只保留必要的错误提示
- 使用 >>> 前缀标识脚本步骤
This commit is contained in:
2026-03-15 12:54:40 +08:00
parent 78063b9e07
commit a578c0b7ac
4 changed files with 45 additions and 144 deletions

15
build.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#
# 混淆构建脚本
#
# 使用方式:
# ./build.sh
#
set -e
cd "$(dirname "$0")"
echo ">>> 构建"
uv run --with pyarmor python build.py
echo ">>> 完成"