diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-09-06 22:29:47 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-09-06 22:29:47 -0700 |
commit | 43a077e302be21511660b44e53ef51fbd81e91c5 (patch) | |
tree | fbac6e88bcc6a76af83f6c7bad63836fec8e6d0d /windows | |
parent | 8d43e08ce7be8673cc399b948d29386f525e9e1f (diff) | |
download | pandoc-43a077e302be21511660b44e53ef51fbd81e91c5.tar.gz |
Tweaked windows install script.
Assumes that pandoc-types and pandoc-citeproc are in Hackage.
Diffstat (limited to 'windows')
-rw-r--r-- | windows/make-windows-installer.bat | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index 9b651860a..5890479ae 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -3,10 +3,8 @@ cd .. cabal update
cabal-dev clean
if %errorlevel% neq 0 exit /b %errorlevel%
-cabal-dev add-source ../pandoc-types
-cabal-dev add-source ../pandoc-citeproc
cabal-dev install hsb2hs
-cabal-dev install --force --reinstall --flags="embed_data_files" pandoc-types pandoc-citeproc
+cabal-dev install --only-dependencies --force --reinstall --flags="embed_data_files"
cabal-dev install --reinstall --flags="embed_data_files"
if %errorlevel% neq 0 exit /b %errorlevel%
strip cabal-dev\bin\pandoc.exe
|