Skip to content

Commit 87c8ade

Browse files
authored
[FIX] odoo_install: add missing semicolon
1 parent 0aafdd6 commit 87c8ade

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

odoo_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,10 @@ if [ $INSTALL_NGINX = "True" ] && [ $ENABLE_SSL = "True" ] && [ $ADMIN_EMAIL !=
399399
echo "SSL/HTTPS is enabled!"
400400
else
401401
echo "SSL/HTTPS isn't enabled due to choice of the user or because of a misconfiguration!"
402-
if $ADMIN_EMAIL = "[email protected]" then
402+
if $ADMIN_EMAIL = "[email protected]";then
403403
echo "Certbot does not support registering [email protected]. You should use real e-mail address."
404404
fi
405-
if $WEBSITE_NAME = "_" then
405+
if $WEBSITE_NAME = "_";then
406406
echo "Website name is set as _. Cannot obtain SSL Certificate for _. You should use real website address."
407407
fi
408408
fi

0 commit comments

Comments
 (0)