summaryrefslogtreecommitdiff
path: root/vcbuild.bat
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2016-08-11 20:18:16 +0100
committerMichael Dawson <michael_dawson@ca.ibm.com>2016-08-25 17:37:16 -0400
commit18017d675ba49be9fcee242c876bf9b06c10e813 (patch)
tree6900dd9f2d2291d4ae1c02ea9ae303676afc61a1 /vcbuild.bat
parent10b3f131c2fc8a6d42e53105287d9e652937242d (diff)
downloadnode-new-18017d675ba49be9fcee242c876bf9b06c10e813.tar.gz
build: add missing files to zip and 7z packages
Add nodevars.bat, node_etw_provider.man and node_perfctr_provider.man to the zip and 7z packages. PR-URL: https://github.com/nodejs/node/pull/8069 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: joaocgreis - João Reis <reis@janeasystems.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat12
1 files changed, 12 insertions, 0 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 701127e4d2..d09f7fcb97 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -126,6 +126,8 @@ if "%target%"=="Clean" rmdir /S /Q %~dp0deps\icu
call :getnodeversion || exit /b 1
+if "%target%"=="Clean" rmdir /Q /S "%~dp0%config%\node-v%FULLVERSION%-win-%target_arch%" > nul 2> nul
+
@rem Set environment for msbuild
if defined target_env if "%target_env%" NEQ "vc2015" goto vc-set-2013
@@ -242,6 +244,16 @@ copy /Y ..\deps\npm\bin\npm node-v%FULLVERSION%-win-%target_arch%\ > nul
if errorlevel 1 echo Cannot copy npm && goto package_error
copy /Y ..\deps\npm\bin\npm.cmd node-v%FULLVERSION%-win-%target_arch%\ > nul
if errorlevel 1 echo Cannot copy npm.cmd && goto package_error
+copy /Y ..\tools\msvs\nodevars.bat node-v%FULLVERSION%-win-%target_arch%\ > nul
+if errorlevel 1 echo Cannot copy nodevars.bat && goto package_error
+if not defined noetw (
+ copy /Y ..\src\res\node_etw_provider.man node-v%FULLVERSION%-win-%target_arch%\ > nul
+ if errorlevel 1 echo Cannot copy node_etw_provider.man && goto package_error
+)
+if not defined noperfctr (
+ copy /Y ..\src\res\node_perfctr_provider.man node-v%FULLVERSION%-win-%target_arch%\ > nul
+ if errorlevel 1 echo Cannot copy node_perfctr_provider.man && goto package_error
+)
echo Creating node-v%FULLVERSION%-win-%target_arch%.7z
del node-v%FULLVERSION%-win-%target_arch%.7z > nul 2> nul