Skip to content

Commit

Permalink
Merge pull request #6 from sykuang/main
Browse files Browse the repository at this point in the history
Fix uncompress error
  • Loading branch information
zekker6 authored Nov 9, 2022
2 parents 765ac7d + 11174d3 commit 1cf230d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ release_file="$ASDF_DOWNLOAD_PATH/${TOOL_NAME}_${ASDF_INSTALL_VERSION}.tar.gz"
download_release "$ASDF_INSTALL_VERSION" "$release_file"

# Extract contents of tar.gz file into the download directory
tar -xazf "$release_file" -C "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file"
tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file"

# Remove the tar.gz file since we don't need to keep it
rm "$release_file"

0 comments on commit 1cf230d

Please sign in to comment.