Skip to content

Commit 874ba42

Browse files
committed
silent nmake and git
1 parent d00e14b commit 874ba42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/windows/build.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ echo Got SDK version %GOT_SDK_VER%
2828
if NOT "%GOT_SDK_VER%" == "%PHP_BUILD_SDK_BRANCH:~8%" (
2929
echo Switching to the configured SDK version %SDK_BRANCH:~8%
3030
echo Fetching remote SDK repository
31-
git --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" fetch --prune origin 2>&1
31+
git -q --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" fetch --prune origin
3232
echo Checkout SDK repository branch
33-
git --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" checkout --force %SDK_BRANCH%
33+
git -q --git-dir="%PHP_BUILD_CACHE_SDK_DIR%\.git" --work-tree="%PHP_BUILD_CACHE_SDK_DIR%" checkout --force %SDK_BRANCH%
3434
)
3535

3636
if not exist "%SDK_RUNNER%" (

.github/scripts/windows/build_task.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ cmd /c configure.bat ^
8484
--disable-test-ini
8585
if %errorlevel% neq 0 exit /b 3
8686

87-
nmake /NOLOGO
87+
nmake /NOLOGO /S
8888
if %errorlevel% neq 0 exit /b 3
8989

9090
exit /b 0

0 commit comments

Comments
 (0)