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 }