From 040fcd8b5d7683bae1c0402d2d9cadb96394f89c Mon Sep 17 00:00:00 2001 From: Radek Scheibinger Date: Mon, 22 Apr 2024 14:25:06 +0200 Subject: [PATCH] explain how to fix missing vars --- crib/scripts/check_env_vars.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/crib/scripts/check_env_vars.sh b/crib/scripts/check_env_vars.sh index 6d1399f47b7..cf7cd477891 100755 --- a/crib/scripts/check_env_vars.sh +++ b/crib/scripts/check_env_vars.sh @@ -23,6 +23,7 @@ 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" exit 1 else echo "All required environment variables are set."