Skip to content

Commit 51a2fee

Browse files
committed
rustup: Don't do verbose tarball extraction
1 parent 83270ed commit 51a2fee

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
@@ -521,7 +521,7 @@ install_package() {
521521
install_script="$2"
522522

523523
msg "Extracting ${local_tarball}"
524-
(cd "${CFG_TMP_DIR}" && "${CFG_TAR}" -xvf "${local_tarball}")
524+
(cd "${CFG_TMP_DIR}" && "${CFG_TAR}" -xzf "${local_tarball}")
525525
if [ $? -ne 0 ]; then
526526
rm -Rf "${CFG_TMP_DIR}"
527527
err "failed to unpack installer"

0 commit comments

Comments
 (0)