diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 21:31:24 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 21:31:24 -0700 |
commit | ef6b3b1b7593463778997ff89ac0858542614eea (patch) | |
tree | 52809f82a8070bbcd8054c5d525af5fcae16454a | |
parent | 6b47a87d7dde9fb894c59d40ffeae0777b29c3bd (diff) | |
download | pandoc-ef6b3b1b7593463778997ff89ac0858542614eea.tar.gz |
appveyor: another attempt to get wix paths right.
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index f7f6b9555..73e8bdd1b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -40,9 +40,9 @@ after_test: - .\pandoc.exe -s -S ..\README -o README.html - .\pandoc.exe -s -S ..\COPYING -o COPYING.rtf - copy ..\COPYRIGHT COPYRIGHT.txt - - setx path "%path%;C:\Program Files (x86)\WiX Toolset v3.10\bin" - - candle -dVERSION="%VERSION%" -dBINPATH=. pandoc.wxs - - light -sw1076 -ext WixUIExtension -ext WixUtilExtension -out pandoc-%VERSION%-windows.msi pandoc.wixobj + - set WIXPATH "C:\Program Files (x86)\WiX Toolset v3.10\bin" + - %WIXPATH%\candle -dVERSION="%VERSION%" -dBINPATH=. pandoc.wxs + - %WIXPATH%\light -sw1076 -ext WixUIExtension -ext WixUtilExtension -out pandoc-%VERSION%-windows.msi pandoc.wixobj artifacts: - path: windows\pandoc.zip |