From d4d9032bfcb19359a7c49105119a4f95f7334e0d Mon Sep 17 00:00:00 2001 From: William Wernert Date: Tue, 16 Nov 2021 10:56:31 -0500 Subject: [PATCH] Remove confusing punctuation --- setup/so-preflight | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-preflight b/setup/so-preflight index 5a03afee0..9515f922c 100755 --- a/setup/so-preflight +++ b/setup/so-preflight @@ -148,7 +148,7 @@ __check_url_arr() { status=$(curl -s -o /dev/null -w "%{http_code}" -L "$url" 2> /dev/null) ret=$? - [[ $ret != 0 ]] && echo "$warning_prefix ($count/$retry_count) Could not reach $url. curl error code: $ret" >> "$preflight_log" + [[ $ret != 0 ]] && echo "$warning_prefix ($count/$retry_count) Could not reach $url, curl error code: $ret" >> "$preflight_log" done if [[ $ret == 0 ]]; then @@ -156,7 +156,7 @@ __check_url_arr() { if [[ $status -ge 400 ]]; then echo "$warning_prefix $url_success_str but server responded with HTTP code $status." >> "$preflight_log" else - printf '%s\n' "$info_prefix $url_success_str." >> "$preflight_log" + printf '%s\n' "$info_prefix $url_success_str" >> "$preflight_log" fi else ret_code=1