Skip to content

Commit

Permalink
Merge pull request #1 from tbobm/fix/remove-debug-command
Browse files Browse the repository at this point in the history
fix(cleanup): remove debug commands
  • Loading branch information
tbobm authored May 14, 2024
2 parents fb45bc1 + 9e04720 commit d7bbaae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,5 @@ download_release "$ASDF_INSTALL_VERSION" "$release_file"
# Extract contents of tar.gz file into the download directory
tar -xvzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file"

ls "$ASDF_DOWNLOAD_PATH"

# Remove the tar.gz file since we don't need to keep it
# rm "$release_file"
rm "$release_file"
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,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 d7bbaae

Please sign in to comment.