Skip to content

Commit 87c8ade

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

odoo_install.sh

+2-2
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 = "odoo@example.com" then
402+
if $ADMIN_EMAIL = "odoo@example.com";then
403403
echo "Certbot does not support registering odoo@example.com. 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)