From 57ab04e3b0b6969ee9d8205b06028e8f7d373b2c Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 6 Mar 2018 18:31:18 -0800 Subject: [PATCH] install: set -e is problematic, revert (#714) [ci skip] --- hledger-install/hledger-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hledger-install/hledger-install.sh b/hledger-install/hledger-install.sh index 114e6867f..e91033c21 100755 --- a/hledger-install/hledger-install.sh +++ b/hledger-install/hledger-install.sh @@ -5,7 +5,7 @@ # Requires bash and some other POSIX tools. # This is based on get-stack.sh which is copyright (c) 2015-2017, Stack contributors. -set -e +#set -e # causes trouble, https://github.com/simonmichael/hledger/issues/714 set -o pipefail usage() { @@ -49,7 +49,7 @@ HERE HLEDGER_INSTALL_TOOL=hledger-install.sh # ^ this script's name (can't use $0 when it's piped into bash) -HLEDGER_INSTALL_VERSION=20180218 +HLEDGER_INSTALL_VERSION=20180306 RESOLVER= #"--resolver=nightly" # ^ You can specify a different stackage snapshot here,