From fac6f8b988e1f09f7054d2e99fccaf51e2cc1dd1 Mon Sep 17 00:00:00 2001 From: xuqinmin12 Date: Fri, 12 Jun 2026 18:34:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20WSL=E5=85=BC=E5=AE=B9+verify=E5=8A=A0?= =?UTF-8?q?=E8=BD=BDsecrets+deploy=E9=9D=9E=E4=BA=A4=E4=BA=92=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/verify.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/verify.sh b/scripts/verify.sh index 65110b6..77c6f38 100644 --- a/scripts/verify.sh +++ b/scripts/verify.sh @@ -46,6 +46,14 @@ if [ -f "$ROOT_DIR/.env" ]; then # shellcheck disable=SC1090 set -a; . "$ROOT_DIR/.env" 2>/dev/null; set +a fi +if [ -f "$ROOT_DIR/config/secrets.env" ]; then + # shellcheck disable=SC1090 + set -a; . "$ROOT_DIR/config/secrets.env" 2>/dev/null; set +a +fi +if [ -f "$ROOT_DIR/config/tenant/bootstrap.env" ]; then + # shellcheck disable=SC1090 + set -a; . "$ROOT_DIR/config/tenant/bootstrap.env" 2>/dev/null; set +a +fi DEPLOY_HOST="${DEPLOY_HOST:-127.0.0.1}" BASE_URL="${BASE_URL:-http://${DEPLOY_HOST}}"