From ee228df17a5b81dfb684f188ae4ab05cc99a68c7 Mon Sep 17 00:00:00 2001 From: Nic Manoogian Date: Fri, 7 Jun 2024 16:28:48 -0400 Subject: [PATCH] WIP: Add CI debugging --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index c35a2c85..fc62aa6d 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -154,6 +154,10 @@ curl_download() { if [ "$status_code" -ne 200 ]; then log_debug "Request failed with http status $status_code" + log_debug "NIC: $url" + log_debug "NIC: $headers" + log_debug "NIC: $(curl --version)" + log_debug "NIC: $(curl --help all)" log_debug "Response headers:" log_debug "$headers" fi @@ -217,6 +221,7 @@ wget_download() { if [ "$valid_status_code" -eq 1 ]; then # print the code and continue log_debug "Request failed with http status $status_code" + log_debug "NIC: $headers" log_debug "Response headers:" log_debug "$headers" else