summaryrefslogtreecommitdiff
path: root/vcbuild.bat
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2015-01-08 16:10:36 +0100
committerBert Belder <bertbelder@gmail.com>2015-01-08 23:32:17 +0100
commit92c5d32d7367deec6d0a4934e3221f6f96688b6a (patch)
treed0e2df72af38eedb5da9abac32c31a665a3cd1d5 /vcbuild.bat
parentfacc0565cacd39faf45b96690f2a6178905c4922 (diff)
downloadnode-new-92c5d32d7367deec6d0a4934e3221f6f96688b6a.tar.gz
win,build: rename node.exe to iojs.exe
* Sign iojs.exe * Run license2rtf.js through iojs PR-URL: https://github.com/iojs/io.js/pull/263 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 45b82d1b65..5c1262d539 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -130,14 +130,14 @@ if errorlevel 1 goto exit
@rem Skip signing if the `nosign` option was specified.
if defined nosign goto licensertf
-signtool sign /a /d "Node.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\node.exe
+signtool sign /a /d "Node.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\iojs.exe
if errorlevel 1 echo Failed to sign exe&goto exit
:licensertf
@rem Skip license.rtf generation if not requested.
if not defined licensertf goto msi
-%config%\node tools\license2rtf.js < LICENSE > %config%\license.rtf
+%config%\iojs tools\license2rtf.js < LICENSE > %config%\license.rtf
if errorlevel 1 echo Failed to generate license.rtf&goto exit
:msi