Skip to content

Commit

Permalink
Silence the unzip output
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Oct 31, 2023
1 parent 52c5176 commit 95a490e
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 @@ -18,7 +18,7 @@ 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"
unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file"
unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" > /dev/null || 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 95a490e

Please sign in to comment.