From f973c2d86d7f7e11d7ad0c07ef93e1f8bdb0e94f Mon Sep 17 00:00:00 2001 From: Sumesh Pradhan Date: Wed, 13 Apr 2022 11:26:17 +0530 Subject: [PATCH] fix: removed redundant func call init_ssl_cert (#12854) --- deploy/docker/scripts/run-nginx.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/deploy/docker/scripts/run-nginx.sh b/deploy/docker/scripts/run-nginx.sh index 9b27d74e4f..3ef94a00c7 100755 --- a/deploy/docker/scripts/run-nginx.sh +++ b/deploy/docker/scripts/run-nginx.sh @@ -47,7 +47,6 @@ if [[ -n ${APPSMITH_CUSTOM_DOMAIN-} ]] && [[ -z ${DYNO-} ]]; then APP_TEMPLATE="$https_conf" if ! [[ -e "/etc/letsencrypt/live/$APPSMITH_CUSTOM_DOMAIN" ]]; then source "/opt/appsmith/init_ssl_cert.sh" - init_ssl_cert "$APPSMITH_CUSTOM_DOMAIN" if ! init_ssl_cert "$APPSMITH_CUSTOM_DOMAIN"; then echo "Status code from init_ssl_cert is $?" APP_TEMPLATE="$http_conf"