Windows builds: removed -S option from pandoc invocations.
This commit is contained in:
parent
7018003811
commit
cb79e9c28d
2 changed files with 4 additions and 4 deletions
|
@ -37,8 +37,8 @@ after_test:
|
||||||
# .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is)
|
# .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is)
|
||||||
- cd windows
|
- cd windows
|
||||||
- 7z a "pandoc.zip" pandoc.exe
|
- 7z a "pandoc.zip" pandoc.exe
|
||||||
- .\pandoc.exe -s -S --toc ..\MANUAL.txt -o MANUAL.html
|
- .\pandoc.exe -s --toc ..\MANUAL.txt -o MANUAL.html
|
||||||
- .\pandoc.exe -s -S ..\COPYING.md -o COPYING.rtf
|
- .\pandoc.exe -s ..\COPYING.md -o COPYING.rtf
|
||||||
- copy ..\COPYRIGHT COPYRIGHT.txt
|
- copy ..\COPYRIGHT COPYRIGHT.txt
|
||||||
- |
|
- |
|
||||||
set VERSION=
|
set VERSION=
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
stack install --test
|
stack install --test
|
||||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||||
for /f "delims=" %%a in ('stack path --local-bin-path') do @set BINPATH=%%a
|
for /f "delims=" %%a in ('stack path --local-bin-path') do @set BINPATH=%%a
|
||||||
%BINPATH%\pandoc.exe -s -S --toc ..\MANUAL.txt -o MANUAL.html
|
%BINPATH%\pandoc.exe -s --toc ..\MANUAL.txt -o MANUAL.html
|
||||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||||
%BINPATH%\pandoc.exe -s ..\COPYING.md -t rtf -S -o COPYING.rtf
|
%BINPATH%\pandoc.exe -s ..\COPYING.md -t rtf -o COPYING.rtf
|
||||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||||
copy ..\COPYRIGHT COPYRIGHT.txt
|
copy ..\COPYRIGHT COPYRIGHT.txt
|
||||||
for /f "tokens=1-2 delims= " %%a in ('%BINPATH%\pandoc.exe --version') do (
|
for /f "tokens=1-2 delims= " %%a in ('%BINPATH%\pandoc.exe --version') do (
|
||||||
|
|
Loading…
Reference in a new issue