diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-10-19 14:08:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-19 14:08:56 +0200 |
commit | 48519861877327743d6accbde9b65a095265b0b0 (patch) | |
tree | 5fa0d3079c947eb7ec3e73664a95c8ddd6a36024 /windows | |
parent | 1da40d63b13c46782046b03baa92c4f95f3b2a67 (diff) | |
parent | 4b51ed382325ceeaaab97d1f5f099751ee025a8b (diff) | |
download | pandoc-48519861877327743d6accbde9b65a095265b0b0.tar.gz |
Merge pull request #3158 from ickc/COPY-LICENSE
Use the markdown version of COPYING from GNU
Diffstat (limited to 'windows')
-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 8bc978d6e..f0c36e545 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -4,7 +4,7 @@ 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.txt -o MANUAL.html
if %errorlevel% neq 0 exit /b %errorlevel%
-%BINPATH%\pandoc.exe -s ..\COPYING -t rtf -S -o COPYING.rtf
+%BINPATH%\pandoc.exe -s ..\COPYING.md -t rtf -S -o COPYING.rtf
if %errorlevel% neq 0 exit /b %errorlevel%
copy ..\COPYRIGHT COPYRIGHT.txt
for /f "tokens=1-2 delims= " %%a in ('%BINPATH%\pandoc.exe --version') do (
|