From 34f6dbbe31547f52b1ff7393435c5e62036b1b9a Mon Sep 17 00:00:00 2001 From: Federico Frigo Date: Tue, 19 Sep 2023 18:40:03 +0200 Subject: [PATCH] test --- lib/utils.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/utils.bash b/lib/utils.bash index 5807d7f..97ae500 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -64,6 +64,8 @@ download_release() { url="$GH_REPO/releases/download/$(get_release_name "$version")/bws-$(get_arch_and_environment)-$version.zip" + echo "$url" + echo "* Downloading $TOOL_NAME release $version..." curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url" }