From 705ba683bddb8bee9c8c9154516156ab8338f73e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 4 Apr 2018 09:20:46 +0100 Subject: [PATCH] install: run stack with default (info) verbosity by default Otherwise details of install plan failures are hidden. --- hledger-install/hledger-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-install/hledger-install.sh b/hledger-install/hledger-install.sh index ccaaf4c43..5e5525004 100755 --- a/hledger-install/hledger-install.sh +++ b/hledger-install/hledger-install.sh @@ -873,7 +873,7 @@ if [[ $VERBOSEFLAG ]]; then STACK_VERBOSITY=info # silent, error, warn, info, debug else CABAL_VERBOSITY=0 - STACK_VERBOSITY=error + STACK_VERBOSITY=info # error is too quiet, hides install plan failure details QUIET="true" fi