From 011914591bf6f7225b2499a8ec5dc3e368e353a3 Mon Sep 17 00:00:00 2001 From: Victor Denisov Date: Tue, 22 Dec 2015 08:32:19 -0800 Subject: [PATCH] Do force reinstalls when installing sdist --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 53a8322..eba63f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,7 @@ script: - export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}'); cd dist/; if [ -f "$SRC_TGZ" ]; then - cabal install "$SRC_TGZ"; + cabal install --force-reinstalls "$SRC_TGZ"; else echo "expected '$SRC_TGZ' not found"; exit 1;