Rev 126 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
123 | pmbaty | 1 | @echo off |
2 | |||
3 | set PRODUCT_NAME=Chess Giants |
||
4 | set PRODUCT_URL=http://www.pmbaty.com/chess/ |
||
5 | set OUTPUT_FILE=C:\Users\Pierre-Marie Baty\Documents\Mes projets\www.pmbaty.com\chess\Chess Giants Installer.exe |
||
6 | |||
7 | echo Updating files in the installer... |
||
8 | "%ProgramFiles(x86)%\NSIS\makensis.exe" "installer.nsi" > "nsis.log" |
||
9 | |||
10 | echo Signing the installer... |
||
11 | call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\Tools\VsDevCmd.bat" |
||
12 | signtool sign /a /t http://timestamp.verisign.com/scripts/timestamp.dll /fd SHA256 /d "%PRODUCT_NAME% installer" /du %PRODUCT_URL% "%OUTPUT_FILE%" >> "nsis.log" |
||
13 | |||
14 | echo Finished. |