From 256022d3d62175da0f9b263ed152851cdadc8eac Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 14 Aug 2026 23:24:53 -0500 Subject: [PATCH] Quiet the 'where' invocations in build-arch.bat --- scripts/build-arch.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build-arch.bat b/scripts/build-arch.bat index d3a433bd..aff4a249 100644 --- a/scripts/build-arch.bat +++ b/scripts/build-arch.bat @@ -41,15 +41,15 @@ if /I "%BUILD_CONFIG%"=="debug" ( rem Locate qmake and determine if we're using qmake.exe or (host-)qmake.bat rem (host-)qmake.bat is an ARM64 forwarder to the x64 version of qmake.exe -where qmake.bat +where /q qmake.bat if !ERRORLEVEL! EQU 0 ( set QMAKE_CMD=call qmake.bat ) else ( - where host-qmake.bat + where /q host-qmake.bat if !ERRORLEVEL! EQU 0 ( set QMAKE_CMD=call host-qmake.bat ) else ( - where qmake.exe + where /q qmake.exe if !ERRORLEVEL! EQU 0 ( set QMAKE_CMD=qmake.exe ) else (