Skip to content

Commit

Permalink
debug: Print download path
Browse files Browse the repository at this point in the history
  • Loading branch information
qbart committed Sep 15, 2023
1 parent b4260b2 commit fc9c3e6
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 @@ -65,6 +65,7 @@ install_version() {
tool_cmd="$(echo "$TOOL_TEST" | cut -d' ' -f1)"

mkdir -p "$install_path"
echo "cp -r $ASDF_DOWNLOAD_PATH/ $install_path"
cp -r "$ASDF_DOWNLOAD_PATH"/* "$install_path"
ls -la "$ASDF_DOWNLOAD_PATH"
ls -la "$install_path"
Expand All @@ -76,7 +77,7 @@ install_version() {

echo "$TOOL_NAME $version installation was successful!"
) || (
# rm -rf "$install_path"
rm -rf "$install_path"
fail "An error occurred while installing $TOOL_NAME $version."
)
}
Expand Down

0 comments on commit fc9c3e6

Please sign in to comment.