Skip to content

Commit eebcec7

Browse files
bzoztargos
authored andcommitted
win, build: remove superfluous error message
When building from clean checkout, `vcbuild` will produce superfluous error message about missing .tmp_gyp_configure_stamp and .gyp_configure_stamp. This removes both those messages. PR-URL: #22580 Reviewed-By: Refael Ackermann <[email protected]>
1 parent 989fd73 commit eebcec7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vcbuild.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,13 @@ fc .gyp_configure_stamp .tmp_gyp_configure_stamp >NUL 2>&1
274274
if errorlevel 1 goto run-configure
275275

276276
:skip-configure
277-
del .tmp_gyp_configure_stamp
277+
del .tmp_gyp_configure_stamp 2> NUL
278278
echo Reusing solution generated with %configure_flags%
279279
goto msbuild
280280

281281
:run-configure
282-
del .tmp_gyp_configure_stamp
283-
del .gyp_configure_stamp
282+
del .tmp_gyp_configure_stamp 2> NUL
283+
del .gyp_configure_stamp 2> NUL
284284
@rem Generate the VS project.
285285
echo configure %configure_flags%
286286
echo %configure_flags%> .used_configure_flags

0 commit comments

Comments
 (0)