From d15cb30153032df3efecd81f615a2cc25c122b16 Mon Sep 17 00:00:00 2001 From: fenris Date: Fri, 10 Dec 2021 00:28:05 +0100 Subject: [PATCH] install packages one after another installing groups doesn't work otherwise --- 1-setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/1-setup.sh b/1-setup.sh index d78d3ae..eae4d0d 100755 --- a/1-setup.sh +++ b/1-setup.sh @@ -70,7 +70,11 @@ echo -ne " Installing Base System ------------------------------------------------------------------------- " -sudo pacman -S --noconfirm --needed - < /root/$SCRIPTHOME/pkg-files/pacman-pkgs.txt +cat /root/$SCRIPTHOME/pkg-files/pacman-pkgs.txt | while read line +do + echo "INSTALLING: ${line}" + sudo pacman -S --noconfirm --needed ${line} +done echo -ne " ------------------------------------------------------------------------- Installing Microcode