Fixed a bug in creating .env file
This commit is contained in:
parent
9cf0a2b98d
commit
5d0daa45f8
|
@ -143,7 +143,7 @@ function confninja {
|
||||||
elif [[ ${line:0:9} == "MAIL_HOST" ]]; then
|
elif [[ ${line:0:9} == "MAIL_HOST" ]]; then
|
||||||
echo "MAIL_HOST=\"$mailhost\"" >> .env
|
echo "MAIL_HOST=\"$mailhost\"" >> .env
|
||||||
elif [[ ${line:0:9} == "MAIL_PORT" ]]; then
|
elif [[ ${line:0:9} == "MAIL_PORT" ]]; then
|
||||||
echo "MAIL_HOST=\"$mailport\"" >> .env
|
echo "MAIL_PORT=\"$mailport\"" >> .env
|
||||||
elif [[ ${line:0:13} == "MAIL_USERNAME" ]]; then
|
elif [[ ${line:0:13} == "MAIL_USERNAME" ]]; then
|
||||||
echo "MAIL_USERNAME=\"$mailuser\"" >> .env
|
echo "MAIL_USERNAME=\"$mailuser\"" >> .env
|
||||||
elif [[ ${line:0:13} == "MAIL_PASSWORD" ]]; then
|
elif [[ ${line:0:13} == "MAIL_PASSWORD" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue