From d50d3ab98beeb52967804f3d4ee7ebe93fa7cd18 Mon Sep 17 00:00:00 2001 From: Manus AI Date: Mon, 23 Feb 2026 01:06:44 -0500 Subject: [PATCH] fix: Update comments to reflect updating existing environment files The console/environments directory and .env files already exist in the repository. The install script overwrites these existing files with the correct configuration values. Updated comments to say 'Update' instead of 'Write/Create' and removed unnecessary mkdir -p command. --- scripts/docker-install.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/docker-install.sh b/scripts/docker-install.sh index c788413c..8498051b 100755 --- a/scripts/docker-install.sh +++ b/scripts/docker-install.sh @@ -114,12 +114,11 @@ mv -f "${CONFIG_PATH}.tmp" "$CONFIG_PATH" echo "✔ $CONFIG_PATH updated" ############################################################################### -# 6b. Write console environment files (.env.development and .env.production) +# 6b. Update console environment files (.env.development and .env.production) ############################################################################### ENV_DIR="$CONFIG_DIR/environments" -mkdir -p "$ENV_DIR" -# Write .env.development +# Update .env.development cat > "$ENV_DIR/.env.development" < "$ENV_DIR/.env.production" <