Skip to content

Commit e751038

Browse files
committed
Merge pull request #19886 from brson/rustup
rustup: Don't do verbose tarball extraction Reviewed-by: alexcrichton
2 parents 62fb41c + 349382b commit e751038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/rustup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ install_package() {
441441
install_script="$2"
442442

443443
msg "Extracting ${tarball_name}"
444-
(cd "${CFG_TMP_DIR}" && "${CFG_TAR}" -xvf "${tarball_name}")
444+
(cd "${CFG_TMP_DIR}" && "${CFG_TAR}" -xzf "${tarball_name}")
445445
if [ $? -ne 0 ]; then
446446
rm -Rf "${CFG_TMP_DIR}"
447447
err "failed to unpack installer"

0 commit comments

Comments
 (0)