From d6910d6e4aea39b02a19de34841ee3db3e09a351 Mon Sep 17 00:00:00 2001 From: Claudio Beatrice Date: Mon, 8 Jan 2024 12:32:05 +0100 Subject: [PATCH] chore: remove debug print --- lib/utils.bash | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/utils.bash b/lib/utils.bash index 6b28313..396be86 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -40,7 +40,6 @@ download_release() { url="$GH_REPO/releases/download/v${version}/melange_${version}_$(get_platform)_$(get_arch).tar.gz" echo "* Downloading $TOOL_NAME release $version..." - echo "FILENAME -> $filename" curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url" }