Browse Source

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>
v1.8.0-commit
Bert Belder 10 years ago
parent
commit
92c5d32d73
  1. 4
      vcbuild.bat

4
vcbuild.bat

@ -130,14 +130,14 @@ if errorlevel 1 goto exit
@rem Skip signing if the `nosign` option was specified. @rem Skip signing if the `nosign` option was specified.
if defined nosign goto licensertf 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 if errorlevel 1 echo Failed to sign exe&goto exit
:licensertf :licensertf
@rem Skip license.rtf generation if not requested. @rem Skip license.rtf generation if not requested.
if not defined licensertf goto msi 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 if errorlevel 1 echo Failed to generate license.rtf&goto exit
:msi :msi

Loading…
Cancel
Save