From a2d132f2e826dae7a3a6a4c00e5f1995c1b9bce9 Mon Sep 17 00:00:00 2001 From: SteveTinkers <79803804+SteveTinkers@users.noreply.github.com> Date: Wed, 17 Nov 2021 18:28:47 -0800 Subject: [PATCH] Bugfixes from testing --- 1-setup.sh | 2 -- x-bootloader.sh | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/1-setup.sh b/1-setup.sh index 745127a..0220bca 100755 --- a/1-setup.sh +++ b/1-setup.sh @@ -242,14 +242,12 @@ if [ ${#PKGS_ARCH[@]} -eq 0 ]; then for PKG in "${PKGS_ARCH_DEFAULT[@]}"; do echo "INSTALLING ARCH DEFAULT PACKAGE: ${PKG}" pacman -S "$PKG" --noconfirm --needed - break done else echo "installing arch user specified packages" for PKG in "${PKGS_ARCH[@]}"; do echo "INSTALLING ARCH USER SPECIFIED PACKAGE: ${PKG}" pacman -S "$PKG" --noconfirm --needed - break done fi diff --git a/x-bootloader.sh b/x-bootloader.sh index 0aad7b1..2678b94 100755 --- a/x-bootloader.sh +++ b/x-bootloader.sh @@ -44,8 +44,7 @@ grub-mkconfig -o $grubfile if [[ -s $grubfile ]]; then cat $grubfile - echo "$grubfile exists and not empty" - read -n 1 -s -r -p "Press any key to continue...or manually break script here." + echo "$grubfile exists (and not empty?)" else echo "" echo "$grubfile doesn't exist or is empty. Is grub downloading correctly?".