Skip to content

Commit 349382b

Browse files
committed
rustup: Don't do verbose tarball extraction
This creates an enormous amount of spew.
1 parent ef0bc46 commit 349382b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/rustup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ install_package() {
440440
install_script="$2"
441441

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

0 commit comments

Comments
 (0)