From 6c10e5d6ab51c8dd518b4c55cffde4ecb0747745 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Tue, 10 Aug 2021 10:31:04 -0300 Subject: [PATCH] Fix testif() --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 1f35196..bc8adcb 100755 --- a/install.sh +++ b/install.sh @@ -23,7 +23,9 @@ quiet() { testif() { local DUMMY + set +e DUMMY=$($@ 2>&1 > /dev/null) + set -e }