Bury output from mirrorlist sorting during background install

This commit is contained in:
natemaia 2019-08-25 11:41:30 -07:00
parent ee17fd144a
commit 0a343c0981

View File

@ -1755,7 +1755,7 @@ install_background()
RSYNC_PID=$! RSYNC_PID=$!
mkdir -p $MNT/var/lib/pacman # can help with pacman errors 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=$! MIRROR_PID=$!
# end the background processes before exiting # end the background processes before exiting