From dc6c6829b5ec7eaad7f5422b1d17774286939367 Mon Sep 17 00:00:00 2001 From: farhoodetaati Date: Thu, 14 Mar 2024 14:06:00 +0330 Subject: [PATCH] fix: DEBUG variable unbound is fixed --- lib/utils.bash | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/utils.bash b/lib/utils.bash index 6d53ef2..35a6573 100755 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -69,10 +69,6 @@ download_release() { filename="$2" filepath="$3" url="$GH_REPO/releases/download/$version/$filename" - if [[ -n $DEBUG ]]; then - echo "Filename is: $filename" - echo "Downloading from $url" - fi echo "* Downloading $TOOL_NAME release $version..." curl "${curl_opts[@]}" -o "$filepath" -C - "$url" || fail "Could not download $url" }