From 1a7c99988b8d4f7046d0c8a9cb911c101d2a631e Mon Sep 17 00:00:00 2001 From: cclohmar Date: Mon, 6 Jul 2026 07:50:02 +0100 Subject: [PATCH] fix(install): align install path to /opt/nextworkspace/ (blueprint-compliant) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix INSTALL_DIR in install.sh: /opt/nextwks → /opt/nextworkspace/ - All deployment scripts now consistently use /opt/nextworkspace/ --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6bb92af..a18a73a 100755 --- a/install.sh +++ b/install.sh @@ -28,7 +28,7 @@ fi # ============================================================ REPO_DIR="$(cd "$(dirname "$0")" && pwd)" ENV_FILE="$(pwd)/.env" -INSTALL_DIR="/opt/nextwks" +INSTALL_DIR="/opt/nextworkspace" BIN_DIR="${INSTALL_DIR}/bin" DATA_DIR="${INSTALL_DIR}/data" STATIC_DIR="${INSTALL_DIR}/static"