remove not needed grep

This commit is contained in:
Tobias Powalowski 2022-10-12 07:17:12 +02:00
parent a04697e843
commit 6844fbc63c

View file

@ -453,7 +453,7 @@ _full_system() {
echo -e "\033[1mStep 1/2:\033[0m Reinstalling packages and adding info/man-pages ..."
echo " This will need some time ..."
pacman -Sy >/dev/tty7 2>&1 || exit 1
pacman -Qqn | grep -v archboot | pacman -S --noconfirm man-db man-pages texinfo - >/dev/tty7 2>&1 || exit 1
pacman -Qqn | pacman -S --noconfirm man-db man-pages texinfo - >/dev/tty7 2>&1 || exit 1
echo -e "\033[1mStep 2/2:\033[0m Checking /home and /root are tmpfs ..."
_home_root_mount
echo -e "\033[1mFinished.\033[0m"