Files
nezhacursor/build.bat
2025-02-12 09:45:55 +08:00

12 lines
201 B
Batchfile

@echo off
chcp 65001
echo 开始打包流程...
:: 更新版本号
python update_version.py
:: 使用新的spec文件进行打包
pyinstaller --noconfirm build_nezha.spec
echo 打包完成!
pause