From f348fa78146c6de399bbc739b180e533954a6b50 Mon Sep 17 00:00:00 2001 From: cytopia Date: Tue, 17 Nov 2020 12:51:15 +0100 Subject: [PATCH] Fixes #751 check-config output duplication --- check-config.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/check-config.sh b/check-config.sh index 32be20ca..fc1364b4 100755 --- a/check-config.sh +++ b/check-config.sh @@ -193,10 +193,6 @@ if [ "${DEVILBOX_PATH_PERM}" != "${MY_GID}" ]; then WRONG_ENV_FILES_VALUES=1 fi -if [ "${WRONG_ENV_FILES_VALUES}" = "0" ]; then - log_ok "All .env file variables have correct values" -fi - HOST_PATH_HTTPD_DATADIR="$( get_path "$( grep -E '^HOST_PATH_HTTPD_DATADIR=' .env | awk -F'=' '{print $2}' )" )" if [ ! -d "${HOST_PATH_HTTPD_DATADIR}" ]; then log_err "Variable 'HOST_PATH_HTTPD_DATADIR' directory does not exist: ${HOST_PATH_HTTPD_DATADIR}"