Files
lyxy-document/build.sh
lanyuanxiaoyao 1306dd5971 chore: 使 build.sh 可执行
将 build.sh 权限从 644 改为 755,使其可直接执行
2026-03-16 10:47:04 +08:00

16 lines
175 B
Bash
Executable File

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