From 0a343c098147832f3529de953bfdc68d275c6991 Mon Sep 17 00:00:00 2001 From: natemaia Date: Sun, 25 Aug 2019 11:41:30 -0700 Subject: [PATCH] Bury output from mirrorlist sorting during background install --- archlabs-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archlabs-installer b/archlabs-installer index 2304efd..96f55ca 100755 --- a/archlabs-installer +++ b/archlabs-installer @@ -1755,7 +1755,7 @@ install_background() RSYNC_PID=$! mkdir -p $MNT/var/lib/pacman # can help with pacman errors - ( install_mirrorlist "$MNT/etc/pacman.d/mirrorlist" && sleep 1 && chrun "pacman -Syyu $BASE_PKGS --needed --noconfirm" >> /tmp/bg_out 2>&1 ) & + ( install_mirrorlist "$MNT/etc/pacman.d/mirrorlist" >/dev/null 2>&1 && sleep 1 && chrun "pacman -Syyu $BASE_PKGS --needed --noconfirm" >> /tmp/bg_out 2>&1 ) & MIRROR_PID=$! # end the background processes before exiting