diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-21 07:25:41 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-21 07:25:41 -0800 |
commit | ba2bce3abc6d70103a9259ab66dea78fbad2ace7 (patch) | |
tree | 3f10385c759bf8efd30921dfc477b35a261d62c2 | |
parent | 0ea7cce895abf5b42d28c2ad477e46b4577a1833 (diff) | |
download | pandoc-ba2bce3abc6d70103a9259ab66dea78fbad2ace7.tar.gz |
Fixed .travis.yml syntax.
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 5272a4418..75fdcca13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,14 +54,14 @@ install: echo "cabal build-cache MISS"; rm -rf $HOME/.cabsnap; mkdir -p $HOME/.ghc $HOME/.cabal/lib $HOME/.cabal/share $HOME/.cabal/bin; - # install unreleased versions of pandoc-types and texmath from git repos - for repo in pandoc-types texmath; do \ - git clone https://github.com/jgm/$repo; \ - cd $repo; \ - cabal install; \ - cd ..; \ - done - cd pandoc-types + for repo in pandoc-types texmath; + do + git clone https://github.com/jgm/$repo; + cd $repo; + cabal install; + cd ..; + done; + cd pandoc-types; cabal install --only-dependencies --enable-tests --enable-benchmarks; fi |