Skip to content

Commit

Permalink
build: windows should append date if nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
tjfontaine authored and bnoordhuis committed Mar 1, 2013
1 parent 4926ffd commit f0f87d8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions vcbuild.bat
Expand Up @@ -133,6 +133,12 @@ if not defined msi goto run
python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt"
if not errorlevel 0 echo Cannot determine current version of node.js & goto exit
for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i

if not defined NIGHTLY goto msibuild
set NODE_VERSION=%NODE_VERSION%-%date:~10,4%%date:~4,2%%date:~7,2%

:msibuild
echo Building node-%NODE_VERSION%
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:Configuration=%config% /p:Platform=%msiplatform% /p:NodeVersion=%NODE_VERSION% %noetw_msi_arg% %noperfctr_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit

Expand Down

0 comments on commit f0f87d8

Please sign in to comment.