From f6d740b4b732afb8439ebffda53c5d09b09f7bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 28 Mar 2015 16:55:43 +0100 Subject: [PATCH] absolute path for pandoc --- appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c538f1b4a9..807fc231b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,13 +17,13 @@ test_script: before_deploy: - choco install pandoc -y - - pandoc -o README.md README.html - - pandoc -o CONTRIBUTING.md CONTRIBUTING.html + - '%LOCALAPPDATA%\Pandoc\pandoc.exe -o README.md README.html' + - '%LOCALAPPDATA%\Pandoc\pandoc.exe -o CONTRIBUTING.md CONTRIBUTING.html' - appveyor DownloadFile "https://raw.githubusercontent.com/wiki/OpenRA/OpenRA/Changelog.md" -FileName Changelog.md - - pandoc -o Changelog.md CHANGELOG.html + - '%LOCALAPPDATA%\Pandoc\pandoc.exe -o Changelog.md CHANGELOG.html' - make docs - - pandoc -o DOCUMENTATION.md DOCUMENTATION.html - - pandoc -o Lua-API.md Lua-API.html + - '%LOCALAPPDATA%\Pandoc\pandoc.exe -o DOCUMENTATION.md DOCUMENTATION.html' + - '%LOCALAPPDATA%\Pandoc\pandoc.exe -o Lua-API.md Lua-API.html' - cp OpenRA.Game/OpenRA.ico . - appveyor DownloadFile "http://downloads.sourceforge.net/project/nsis/NSIS 2/2.46/nsis-2.46-setup.exe" -FileName nsissetup.exe - nsissetup /S /D=%NSIS_ROOT%