From 86b4a9c93d754a05a06f72e4edfd65e10083e801 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 24 Oct 2018 11:12:41 -0700 Subject: [PATCH] travis: unconditionally fetch latest stack (1.9.1) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index af720e3f9..eaf914992 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,7 +91,8 @@ install: # command output is hidden as they complete # stack - mkdir -p ~/.local/bin - export PATH=~/.local/bin:$PATH - - if [[ ! -x ~/.local/bin/stack ]]; then travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'; chmod a+x ~/.local/bin/stack; fi + #- if [[ ! -x ~/.local/bin/stack ]]; then travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'; chmod a+x ~/.local/bin/stack; fi + - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'; chmod a+x ~/.local/bin/stack - which stack - type -a stack - stack --version