add missing exit

This commit is contained in:
Tobias Powalowski 2022-05-14 12:08:50 +02:00
parent 4648d0a369
commit 8b61388824

View file

@ -278,7 +278,7 @@ _prepare_xfce() {
fi fi
# workaround unsolvable zstd bug, # workaround unsolvable zstd bug,
# booting with higher memory results in not having /var/lib/pacman/local/zstd-* # booting with higher memory results in not having /var/lib/pacman/local/zstd-*
pacman -Sy zstd --noconfirm --overwrite '*' >/dev/null 2>&1 pacman -Sy zstd --noconfirm --overwrite '*' >/dev/null 2>&1 || exit 1
#shellcheck disable=SC2086 #shellcheck disable=SC2086
pacman -Syu ${_IGNORE} --noconfirm >/dev/null 2>&1 || exit 1 pacman -Syu ${_IGNORE} --noconfirm >/dev/null 2>&1 || exit 1
_cleanup_install _cleanup_install