From 35e5dc733de24dc02f1bfa1ce737ac36fb74be94 Mon Sep 17 00:00:00 2001 From: Daniel Hansson Date: Thu, 11 Nov 2021 12:21:13 +0100 Subject: [PATCH] fix later https://github.com/koalaman/shellcheck/wiki/SC2048 https://github.com/koalaman/shellcheck/wiki/SC2066 --- lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.sh b/lib.sh index 7fe9a703..71f25cba 100644 --- a/lib.sh +++ b/lib.sh @@ -783,7 +783,7 @@ local tls_alpn_01="certbot certonly --preferred-challenges tls-alpn-01 $default local dns="certbot certonly --manual --manual-public-ip-logging-ok --preferred-challenges dns $default_le" local methods=(standalone dns) -for f in "${methods[*]}" +for f in ${methods[*]} do print_text_in_color "${ICyan}" "Trying to generate certs and validate them with $f method." current_method=""