Skip to content

Commit

Permalink
add extra info to download
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacharrisholt committed Nov 21, 2024
1 parent 53ee03a commit 05d5ae7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ download_release() {

url="$(get_download_url "$version")"

echo "* Downloading $TOOL_NAME release $version..."
echo "* Downloading $TOOL_NAME release $version from $url into $filename..."
curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url"
}

Expand All @@ -54,6 +54,7 @@ install_version() {
fi

(
echo "Install path is $install_path"
mkdir -p "$install_path"
cp -r "$ASDF_DOWNLOAD_PATH"/* "$install_path"

Expand Down

0 comments on commit 05d5ae7

Please sign in to comment.