diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-16 21:55:07 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-16 21:55:07 -0700 |
commit | 0915967d840ad453027fb30a00b69401d3d8b50e (patch) | |
tree | 072a963a37836a6612bb5a78e61a58c628cbfe3a | |
parent | 06da7be1fdb6dd80238c0131a8d1c903899d5232 (diff) | |
download | pandoc-0915967d840ad453027fb30a00b69401d3d8b50e.tar.gz |
Windows build script: add -windows to file name.
-rw-r--r-- | windows/make-windows-installer.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index 4b17b449f..f639b9405 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -30,7 +30,7 @@ cd windows echo Creating msi...
candle -dVERSION=%VERSION% pandoc.wxs
if %errorlevel% neq 0 exit /b %errorlevel%
-light -sw1076 -ext WixUIExtension -out pandoc-%VERSION%.msi pandoc.wixobj
+light -sw1076 -ext WixUIExtension -out pandoc-%VERSION%-windows.msi pandoc.wixobj
if %errorlevel% neq 0 exit /b %errorlevel%
echo Starting kSign: sign, then quit kSign to complete the build...
kSign
|