diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-21 10:52:08 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-21 10:52:08 -0800 |
commit | ad6a3401fbf080561e17b8ce164f38d0700ee1b2 (patch) | |
tree | 2c0b61e93953097a3f3119834fbab54fa27c3d92 | |
parent | dd2d8ff6ffc08a1400287523b996361ced28afcd (diff) | |
download | pandoc-ad6a3401fbf080561e17b8ce164f38d0700ee1b2.tar.gz |
Added sanity check in .travis.yml to diagnose problem.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 2ef7cc0bb..31964951a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,6 +24,10 @@ before_install: - mkdir -p ~/.local/bin - export STACKVER=0.1.8.0 - export PATH=~/.local/bin:/opt/ghc/$GHCVER/bin:$PATH +# sanity check: +- echo $PATH +- which ghc +- ghc --version - travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v$STACKVER/stack-$STACKVER-linux-x86_64.tar.gz | tar xvzf - - cp stack-$STACKVER-linux-x86_64/stack ~/.local/bin/stack - chmod a+x ~/.local/bin/stack |