From f97d5dce9b8f8f536d4947da99159ae81a980733 Mon Sep 17 00:00:00 2001 From: iphydf Date: Thu, 5 Mar 2020 10:52:57 +0000 Subject: [PATCH] Output the released tarball to the repo checkout dir. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f31b967..c138157 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ script: # TODO(iphydf): Figure out how to do this more generically. How were we supposed # to know that this file is needed and can be found here? - cp $HOME/.stack/snapshots/x86_64-linux/*/8.8.2/share/x86_64-linux-ghc-8.8.2/hlint-2.2.11/hlint.yaml $HOME/.local/bin/data/ - - (cd $HOME && tar zcf hs-tools-$TRAVIS_TAG.tar.gz -C $HOME + - (WORK=`pwd` && cd $HOME && tar zcf $WORK/hs-tools-$TRAVIS_TAG.tar.gz -C $HOME .local/bin .stack/snapshots/x86_64-linux/*/8.8.2/share/x86_64-linux-ghc-8.8.2/hlint-2.2.11 .stack/snapshots/x86_64-linux/*/8.8.2/share/x86_64-linux-ghc-8.8.2/pandoc-2.9.1.1)