We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d952be3 commit 7bd88e9Copy full SHA for 7bd88e9
1 file changed
lib/utils.bash
@@ -112,7 +112,12 @@ download_release() {
112
esac
113
114
echo "* Downloading $TOOL_NAME release $version..."
115
- curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url"
+ echo " URL: $url" >&2
116
+ curl -fsSL -o "$filename" "$url" || fail "Could not download $url"
117
+
118
+ # Debug: show file size and first bytes
119
+ echo " Downloaded file size: $(wc -c < "$filename") bytes" >&2
120
+ echo " First bytes (hex): $(head -c 8 "$filename" | xxd -p)" >&2
121
}
122
123
install_version() {
0 commit comments