From b7cfbc9593dc14eb12c70c17d22c15298ba2f6af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Wed, 2 May 2018 19:11:06 +0200 Subject: [PATCH] Fix output broken by trap & status code fix --- hack/bootstrap_tfw_dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/bootstrap_tfw_dev.sh b/hack/bootstrap_tfw_dev.sh index b7dab0e..1336b45 100755 --- a/hack/bootstrap_tfw_dev.sh +++ b/hack/bootstrap_tfw_dev.sh @@ -55,12 +55,12 @@ check_dependencies() missing="0" for dep in ${dependencies[@]}; do if ! type "$dep" > /dev/null 2>&1; then - echo "Dependency '${dep}' not found!" + logged echo "Dependency '${dep}' not found!" missing="1" fi done if [ "$missing" == "1" ]; then - echo "Please install the missing packages and retry!" + logged echo "Please install the missing packages and retry!" exit 1 fi }