diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-06 08:42:30 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-05-06 08:42:30 -0700 |
commit | 7019069a325dae0f2729c29c9e2436f19c2271c2 (patch) | |
tree | 1cf8bb722fa13f5f2b2896e14d9437ab1f8524ca /windows | |
parent | 5ff2adc08f5b00dcca2c1f6ecd03958e94bc198c (diff) | |
download | pandoc-7019069a325dae0f2729c29c9e2436f19c2271c2.tar.gz |
Windows install script: Fixed typo in path.
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 1734e1a27..3f3696f12 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -11,7 +11,7 @@ cabal install -v1 --reinstall --flags="embed_data_files" pandoc-citeproc if %errorlevel% neq 0 exit /b %errorlevel%
strip .\.cabal-sandbox\bin\pandoc.exe
strip .\.cabal-sandbox\bin\pandoc-citeproc.exe
-\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.html -S README -o README.html
+.\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.html -S README -o README.html
if %errorlevel% neq 0 exit /b %errorlevel%
.\cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.rtf COPYING -t rtf -S -o COPYING.rtf
if %errorlevel% neq 0 exit /b %errorlevel%
|