From 225404d21566b92d24494a9853efc4403f181d46 Mon Sep 17 00:00:00 2001 From: natemaia Date: Mon, 18 May 2020 12:49:36 -0700 Subject: [PATCH] Remove pointless array --- installer | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer b/installer index 9b3b9c2..b97362e 100755 --- a/installer +++ b/installer @@ -1989,7 +1989,7 @@ install_bootldr() install_packages() { - typeset -a inpkg rmpkg loginpkg + typeset -a inpkg rmpkg inpkg=("${SES_PKGS[@]}" "${USER_PKGS[@]}") @@ -2034,8 +2034,8 @@ install_packages() errshow 1 "chrun 'pacman -S $KERNEL $UCODE iputils --noconfirm'" # install the packages chosen throughout the install plus any extras added - chrun "pacman -S ${inpkg[*]} ${loginpkg[*]} $NEWSHELL --needed --noconfirm" 2> "$ERR" 2>&1 - errshow 1 "chrun 'pacman -S ${inpkg[*]} ${loginpkg[*]} $NEWSHELL --needed --noconfirm'" + chrun "pacman -S ${inpkg[*]} $NEWSHELL --needed --noconfirm" 2> "$ERR" 2>&1 + errshow 1 "chrun 'pacman -S ${inpkg[*]} $NEWSHELL --needed --noconfirm'" # bootloader packages if [[ $BOOTLDR == 'grub' ]]; then