Fixed make-windows-installer to use double quotes for path.
This commit is contained in:
parent
bbfba90980
commit
eb6e8b5c88
1 changed files with 6 additions and 3 deletions
|
@ -12,6 +12,9 @@ if %errorlevel% neq 0 exit /b %errorlevel%
|
|||
copy COPYING COPYING.txt
|
||||
copy COPYRIGHT COPYRIGHT.txt
|
||||
cd windows
|
||||
'C:\Program Files\WiX Toolset v3.7\bin\candle.exe' -out pandoc.wxs pandoc.wxs
|
||||
'C:\Program Files\WiX Toolset v3.7\bin\light.exe' -out Output\pandoc.msi pandoc.wixobj
|
||||
echo Created Output\pandoc.msi. Run kSign to sign the installer.
|
||||
echo Creating msi...
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\candle.exe" pandoc.wxs
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
"C:\Program Files\WiX Toolset v3.7\bin\light.exe" pandoc.wixobj
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
"C:\Program Files\kSign\kSign.exe"
|
||||
|
|
Loading…
Reference in a new issue