From b2e17321614caab2af6c0e053eb2a4902128f19e Mon Sep 17 00:00:00 2001 From: cclohmar Date: Sun, 14 Jun 2026 16:37:25 +0000 Subject: [PATCH] fix(installer): move REPO_DIR before ENV_FILE to fix unbound variable --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 7196b27..1ca1e53 100755 --- a/install.sh +++ b/install.sh @@ -16,6 +16,11 @@ header() { echo -e "\n${BOLD}${CYAN}$1${NC}"; } # SERVICE USER # ============================================================ SVC_USER="nextwks" + +# ============================================================ +# PATHS +# ============================================================ +REPO_DIR="$(cd "$(dirname "$0")" && pwd)" ENV_FILE="${REPO_DIR}/.env" AUTHELIA_DIR="/opt/authelia" AUTHELIA_CONFIG="${AUTHELIA_DIR}/configuration.yml"