diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-07-22 15:55:35 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-07-22 15:55:35 -0700 |
commit | 1a3d753b0e522951feaf550389a387abfe18a1a9 (patch) | |
tree | 03d321b82475d06a63dc110c8540ccb146193058 | |
parent | 199489c12c69a3a0b55671edfa7d980b43489777 (diff) | |
download | pandoc-1a3d753b0e522951feaf550389a387abfe18a1a9.tar.gz |
Fix MANUAL.txt path in make-windows-installer.txt.
-rw-r--r-- | windows/make-windows-installer.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index 75fd01b4f..8bc978d6e 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -2,7 +2,7 @@ stack install --test
if %errorlevel% neq 0 exit /b %errorlevel%
for /f "delims=" %%a in ('stack path --local-bin-path') do @set BINPATH=%%a
-%BINPATH%\pandoc.exe -s -S --toc ..\MANUAL -o MANUAL.html
+%BINPATH%\pandoc.exe -s -S --toc ..\MANUAL.txt -o MANUAL.html
if %errorlevel% neq 0 exit /b %errorlevel%
%BINPATH%\pandoc.exe -s ..\COPYING -t rtf -S -o COPYING.rtf
if %errorlevel% neq 0 exit /b %errorlevel%
|