From 514ea1c6951b84577ad0c10bebefcb87d2b6cd3a Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 26 Jun 2026 13:42:38 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20WWW=5FROOT=5FDIR=20in=20.e?= =?UTF-8?q?nv.scripts=20code=20block=20=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dotenv.template uses a heredoc — variable expansions inside it are resolved at generation time. When WWW_ROOT_DIR is unset, the ${WWW_ROOT_DIR:-default} expression expands to the literal default path. The code block now shows the actual generated output. - .github/AI.md: WWW_ROOT_DIR value from template form to generated form AI.md --- AI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AI.md b/AI.md index 6c295e0..a66510a 100644 --- a/AI.md +++ b/AI.md @@ -273,7 +273,7 @@ NODE_VERSION="system" NODE_MANAGER="system" # - - - - - - - - - - - - - - - - - - - - - - - - - # Default directories -WWW_ROOT_DIR="${WWW_ROOT_DIR:-/usr/local/share/httpd/default}" +WWW_ROOT_DIR="/usr/local/share/httpd/default" # - - - - - - - - - - - - - - - - - - - - - - - - - ENV_PACKAGES="" ```