From 5d0daa45f871bdc243e53c8a0100705d21f432a1 Mon Sep 17 00:00:00 2001 From: Ze'ev Schurmann Date: Sun, 28 Jul 2024 03:45:17 +0200 Subject: [PATCH] Fixed a bug in creating .env file --- setupninja.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupninja.sh b/setupninja.sh index 395b7ef..110b529 100644 --- a/setupninja.sh +++ b/setupninja.sh @@ -143,7 +143,7 @@ function confninja { elif [[ ${line:0:9} == "MAIL_HOST" ]]; then echo "MAIL_HOST=\"$mailhost\"" >> .env elif [[ ${line:0:9} == "MAIL_PORT" ]]; then - echo "MAIL_HOST=\"$mailport\"" >> .env + echo "MAIL_PORT=\"$mailport\"" >> .env elif [[ ${line:0:13} == "MAIL_USERNAME" ]]; then echo "MAIL_USERNAME=\"$mailuser\"" >> .env elif [[ ${line:0:13} == "MAIL_PASSWORD" ]]; then