Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | pmbaty | 1 | @echo off |
| 2 | |||
| 3 | set REPOSITORY=. |
||
| 4 | |||
| 5 | set SCRIPT_DEMO=installer\Chess Giants Demo.nsi |
||
| 6 | set SCRIPT_RELEASE=installer\Chess Giants Installer.nsi |
||
| 7 | |||
| 8 | echo Updating files in the demo installer... |
||
| 9 | "%ProgramFiles(x86)%\NSIS\makensis.exe" "%SCRIPT_DEMO%" > "%REPOSITORY%\nsis-demo.log" |
||
| 10 | |||
| 11 | echo Updating files in the release installer... |
||
| 12 | "%ProgramFiles(x86)%\NSIS\makensis.exe" "%SCRIPT_RELEASE%" > "%REPOSITORY%\nsis-release.log" |
||
| 13 | |||
| 14 | echo Finished. |