增加自动化编译打包脚本

This commit is contained in:
2026-08-31 19:31:00 +08:00
parent 6e2ce733a6
commit ed04c636be
7 changed files with 326 additions and 18 deletions
+12
View File
@@ -0,0 +1,12 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0pack_firmware.ps1"
if errorlevel 1 (
echo.
echo pack failed.
pause
exit /b 1
)
echo.
pause