diff --git a/bin/download b/bin/download index b864098..1447ba9 100755 --- a/bin/download +++ b/bin/download @@ -12,11 +12,8 @@ mkdir -p "$ASDF_DOWNLOAD_PATH" release_file="$ASDF_DOWNLOAD_PATH/$TOOL_NAME" -# Download tar.gz file to the download directory +# Download file to the download directory download_release "$ASDF_INSTALL_VERSION" "$release_file" -# Extract contents of tar.gz file into the download directory -# tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" --strip-components=1 || fail "Could not extract $release_file" - -# Remove the tar.gz file since we don't need to keep it -# rm "$release_file" +# Remove the file since we don't need to keep it +rm "$release_file"