build: windows should append date if nightly
This commit is contained in:
parent
4926ffd14b
commit
f0f87d8afb
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user