📝 Fix WWW_ROOT_DIR in .env.scripts code block 📝

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
This commit is contained in:
2026-06-26 13:42:38 -04:00
parent 9bd1f3995c
commit 514ea1c695
+1 -1
View File
@@ -273,7 +273,7 @@ NODE_VERSION="system"
NODE_MANAGER="system" NODE_MANAGER="system"
# - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - -
# Default directories # Default directories
WWW_ROOT_DIR="${WWW_ROOT_DIR:-/usr/local/share/httpd/default}" WWW_ROOT_DIR="/usr/local/share/httpd/default"
# - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - -
ENV_PACKAGES="" ENV_PACKAGES=""
``` ```