Bugfixes from testing
This commit is contained in:
parent
2a6a17d3ad
commit
a2d132f2e8
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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?".
|
||||
|
|
|
|||
Loading…
Reference in New Issue