aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-11-21 07:25:41 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-11-21 07:25:41 -0800
commitba2bce3abc6d70103a9259ab66dea78fbad2ace7 (patch)
tree3f10385c759bf8efd30921dfc477b35a261d62c2
parent0ea7cce895abf5b42d28c2ad477e46b4577a1833 (diff)
downloadpandoc-ba2bce3abc6d70103a9259ab66dea78fbad2ace7.tar.gz
Fixed .travis.yml syntax.
-rw-r--r--.travis.yml16
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