doesnt install dm 'none' when user chooses to not install any desktop environment anymore

pull/3/head
Amy 3 years ago
parent 78d1a1ccc2
commit f7c2fd2841
No known key found for this signature in database
GPG Key ID: 6672E6DD65BEA50B

@ -477,7 +477,9 @@ if [[ "$DM" == "" ]]; then
inf "Ok, not installing a display manager."
fi
else
arch-chroot /mnt pacman -S --quiet --noconfirm $DM
if [[ "$DM" == "none "]]; then
arch-chroot /mnt pacman -S --quiet --noconfirm $DM
fi
fi
if [[ "$DM" != "" ]]; then
if [[ "$DM" != "none" ]]; then

Loading…
Cancel
Save