docs(batch): 更新批处理脚本注释

更新启动开发和打包批处理脚本中的注释内容,
使描述更加简洁明了,并统一为英文注释。
This commit is contained in:
2026-06-26 14:40:44 +08:00
parent 849090a627
commit 1ca66dc0af
2 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
@echo off
chcp 65001 >nul
rem 一键本地开发:自动配置 Go/Wails 环境、安装依赖并启动 wails dev
cd /d "%~dp0"
rem Start local Wails development environment.
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\dev.ps1" %*
pause

View File

@@ -1,7 +1,6 @@
@echo off
chcp 65001 >nul
rem 一键打包:编译 helper + 主程序,产出 dist\qiweimanager 绿色免安装版
rem 如需 NSIS 安装包,改为运行: 打包.bat -Installer (需先安装 NSIS
cd /d "%~dp0"
rem Build release package. Use: package.bat -Installer for NSIS installer.
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\build.ps1" %*
pause