diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 21:33:57 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-02 21:33:57 -0700 |
commit | 703151c6bbe0482e36c26debf90a58347316535c (patch) | |
tree | 49d6acac9c71e07225259ee398b793e38a56a6d3 | |
parent | ed561e9f9338af6ef4149153cee3583f42b3dc7a (diff) | |
download | pandoc-703151c6bbe0482e36c26debf90a58347316535c.tar.gz |
appveyor: fixed set command.
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 6a106f97e..4cb5c727e 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 - - 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 + - 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 |