Update util-desktop.sh

merge-requests/273/head
Chrysostomus 8 years ago committed by GitHub
parent db312db7c9
commit fab5729f5f

@ -175,12 +175,15 @@ install_manjaro_de_wm() {
# remove zsh
sed -i '/^zsh$/d' /tmp/.edition
check_for_error "packages to install: $(cat /tmp/.edition /usr/share/manjaro-architect/package-lists/input-drivers | grep -v -f /mnt/.base | sort | uniq | tr '\n' ' ')"
check_for_error "packages to install: $(grep -v -f /mnt/.base /tmp/.edition | sort | uniq | tr '\n' ' ')"
clear
# remove already installed base pkgs and
# basestrap the parsed package list to the new root
basestrap -i ${MOUNTPOINT} $(grep -v -f /tmp/.base /tmp/.edition | sort | uniq) 2>$ERR
basestrap -i ${MOUNTPOINT} $(grep -v -f /mnt/.base /tmp/.edition | sort | uniq) 2>$ERR
check_for_error "install pkgs: $(cat /tmp/.desktop)" "$?"
# copy the profile overlay to the new root

Loading…
Cancel
Save