Skip to content

Commit

Permalink
win, build: remove superfluous error message
Browse files Browse the repository at this point in the history
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 <refack@gmail.com>
  • Loading branch information
bzoz authored and targos committed Sep 6, 2018
1 parent e39d692 commit b9c0d5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,13 @@ fc .gyp_configure_stamp .tmp_gyp_configure_stamp >NUL 2>&1
if errorlevel 1 goto run-configure

:skip-configure
del .tmp_gyp_configure_stamp
del .tmp_gyp_configure_stamp 2> NUL
echo Reusing solution generated with %configure_flags%
goto msbuild

:run-configure
del .tmp_gyp_configure_stamp
del .gyp_configure_stamp
del .tmp_gyp_configure_stamp 2> NUL
del .gyp_configure_stamp 2> NUL
@rem Generate the VS project.
echo configure %configure_flags%
echo %configure_flags%> .used_configure_flags
Expand Down

0 comments on commit b9c0d5e

Please sign in to comment.