From 1e61597fe0b57e5e6e9247be494160ead6fdf608 Mon Sep 17 00:00:00 2001 From: hwf1324 <1398969445@qq.com> Date: Wed, 27 Mar 2024 00:02:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=20GitHub=20Actions=20=E4=B8=AD?= =?UTF-8?q?=E6=97=A0=E9=9C=80=E8=BF=90=E8=A1=8C=20NVDA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\211\247\350\241\214\350\204\232\346\234\254.bat" | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" index 50a6adc..791d573 100644 --- "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" +++ "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" @@ -1,4 +1,4 @@ -@echo on +@echo off chcp 65001 Rem 修改下一行等号后面的值为NVDA源程序文件名即可成功生成,生成的文件位于 Output 文件夹中。 @@ -10,10 +10,14 @@ IF EXIST "%~dp0Temp" (rd /s /q "%~dp0Temp") Rem 创建便携版 NVDA "%~dp0Resource\%nvda%.exe" --create-portable-silent --portable-path="%~dp0Temp\NVDA" -if /i %PROCESSOR_IDENTIFIER:~0,3%==x86 ( -Start /D "%ProgramFiles%\NVDA" NVDA +if "%1" == "GITHUB_ACTIONS" ( + Rem 在 GitHub Actions 中无需运行 NVDA ) else ( -Start /D "%ProgramFiles(x86)%\NVDA" NVDA + if /i %PROCESSOR_IDENTIFIER:~0,3%==x86 ( + Start /D "%ProgramFiles%\NVDA" NVDA + ) else ( + Start /D "%ProgramFiles(x86)%\NVDA" NVDA + ) ) Rem 开始生成