Skip to content

Commit 256022d

Browse files
committed
Quiet the 'where' invocations in build-arch.bat
1 parent da33123 commit 256022d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/build-arch.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ if /I "%BUILD_CONFIG%"=="debug" (
4141

4242
rem Locate qmake and determine if we're using qmake.exe or (host-)qmake.bat
4343
rem (host-)qmake.bat is an ARM64 forwarder to the x64 version of qmake.exe
44-
where qmake.bat
44+
where /q qmake.bat
4545
if !ERRORLEVEL! EQU 0 (
4646
set QMAKE_CMD=call qmake.bat
4747
) else (
48-
where host-qmake.bat
48+
where /q host-qmake.bat
4949
if !ERRORLEVEL! EQU 0 (
5050
set QMAKE_CMD=call host-qmake.bat
5151
) else (
52-
where qmake.exe
52+
where /q qmake.exe
5353
if !ERRORLEVEL! EQU 0 (
5454
set QMAKE_CMD=qmake.exe
5555
) else (

0 commit comments

Comments
 (0)