From 6839715e9631cbb49b52fce7e3b68955581040a0 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 30 May 2016 13:56:02 +0200 Subject: [PATCH] Fix travis --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 38ca67a..0967ca9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,6 +42,9 @@ script: cd dist/; cabal sandbox init; if [ -f "$SRC_TGZ" ]; then + cabal install alex happy; + export PATH="$(pwd)/.cabal-sandbox/bin:$PATH"; + cabal install gtk2hs-buildtools; cabal install "$SRC_TGZ" --enable-tests; else echo "expected '$SRC_TGZ' not found";