From 87c8ade5700604b4e265cdeb28878a47758c0a11 Mon Sep 17 00:00:00 2001 From: Yenthe Van Ginneken Date: Mon, 10 Jul 2023 14:57:59 +0200 Subject: [PATCH] [FIX] odoo_install: add missing semicolon --- odoo_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/odoo_install.sh b/odoo_install.sh index 8e7c31e..52a7902 100644 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -399,10 +399,10 @@ if [ $INSTALL_NGINX = "True" ] && [ $ENABLE_SSL = "True" ] && [ $ADMIN_EMAIL != echo "SSL/HTTPS is enabled!" else echo "SSL/HTTPS isn't enabled due to choice of the user or because of a misconfiguration!" - if $ADMIN_EMAIL = "odoo@example.com" then + if $ADMIN_EMAIL = "odoo@example.com";then echo "Certbot does not support registering odoo@example.com. You should use real e-mail address." fi - if $WEBSITE_NAME = "_" then + if $WEBSITE_NAME = "_";then echo "Website name is set as _. Cannot obtain SSL Certificate for _. You should use real website address." fi fi