From b095a91625936ff78dbbb773382faadc6161a468 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 5 Jan 2019 00:36:29 -0700 Subject: [PATCH] add newline after certbot ok message --- setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index fdb951d..9e2c970 100644 --- a/setup.sh +++ b/setup.sh @@ -120,7 +120,7 @@ if [ "${useCertbot}" -eq 1 ]; then fi done if [ -z "${certbotBadFile}" ]; then - echo -e "${cyan}Certbot files seem intact${norm}" + echo -e "${cyan}Certbot files seem intact${norm}\n" CertbotDomain="${inputCertbotDomain}" break else @@ -347,6 +347,7 @@ done # debug section +echo -e "\n${mag}---------------------${norm}" echo "Local IP4: $IP4" echo "Using Certbot: $useCertbot" echo "CertbotDomain: $CertbotDomain"