From a4504128714539d1951e8798bd759cebb0723818 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Wed, 14 Oct 2015 19:43:16 -0700 Subject: [PATCH] doc: fix travis stack download command --- doc/GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/GUIDE.md b/doc/GUIDE.md index 1b22b3de86..1bdbd114fd 100644 --- a/doc/GUIDE.md +++ b/doc/GUIDE.md @@ -1603,7 +1603,7 @@ before_install: # Download and unpack the stack executable - mkdir -p ~/.local/bin - export PATH=$HOME/.local/bin:$PATH -- travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.6.0/stack-0.1.6.0-linux-x86_64.tar.gz | tar xz --strip-components=1 -C ~/.local/bin '*/stack' +- travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.6.0/stack-0.1.6.0-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # This line does all of the work: installs GHC if necessary, build the library, # executables, and test suites, and runs the test suites. --no-terminal works