Skip to content

Commit

Permalink
More debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
sarg3nt committed May 25, 2024
1 parent c240934 commit 4f98a80
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,6 @@ download_release() {
echo "* Downloading $TOOL_NAME release $version..."
curl "${curl_opts[@]}" -o "$download_file" -C - "$url" || fail "Could not download $url"

echo "*** Curl command ***"
echo "${curl_opts[@]} -o $download_file -C - $url"
echo "*** download path file contents ***"
ls -alh "$ASDF_DOWNLOAD_PATH"
echo "*** Download file var is ***"
echo "$download_file"
tar -tvf "$download_file"

curl -fsSL -o /tmp/asdf.kB3Z/downloads/micro/2.0.13/micro.tar.gz -C - https://github.com/zyedidia/micro/releases/download/v2.0.13/micro-2.0.13-linux64.tar.gz

Expand All @@ -121,6 +114,10 @@ download_release() {
esac

mv "$ASDF_DOWNLOAD_PATH/micro-$version/micro" "$filename"

echo "*** Destination file ***"
ls -alh "$filename"

rm "$download_file"
rm -rf "$ASDF_DOWNLOAD_PATH/micro-$version"
}
Expand Down

0 comments on commit 4f98a80

Please sign in to comment.