From 47a9f6578345820d78c1995492aa76b98e962349 Mon Sep 17 00:00:00 2001 From: Radek Scheibinger Date: Mon, 22 Apr 2024 18:26:53 +0200 Subject: [PATCH] add info about example --- crib/scripts/check_env_vars.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crib/scripts/check_env_vars.sh b/crib/scripts/check_env_vars.sh index cf7cd477891..f26f78e7470 100755 --- a/crib/scripts/check_env_vars.sh +++ b/crib/scripts/check_env_vars.sh @@ -23,7 +23,8 @@ done # Exit with an error if any variables were missing if [ $missing_vars -ne 0 ]; then echo "Total missing environment variables: $missing_vars" - echo "To fix it, add missing variables in the crib/.env file" + echo "To fix it, add missing variables in the \"crib/.env\" file." + echo "you can find example of the .env config in the \"crib/.env.example\"" exit 1 else echo "All required environment variables are set."