Install packages from package lists in transform script

The pre-flight summary already computed missing packages but never
installed them. Now installs both official and AUR packages after
moonarch-git.
This commit is contained in:
nevaforget 2026-03-30 23:03:58 +02:00
parent 9dde069e3e
commit c011672bc2

View File

@ -225,6 +225,17 @@ paru -Sy --pkgbuilds --noconfirm
log "Installing moonarch-git package..."
paru -S --needed --noconfirm moonarch-git
# Install packages from package lists
if [[ -n "$MISSING_OFFICIAL" ]]; then
log "Installing official packages..."
echo "$MISSING_OFFICIAL" | paru -S --needed --noconfirm -
fi
if [[ -n "$MISSING_AUR" ]]; then
log "Installing AUR packages..."
echo "$MISSING_AUR" | paru -S --needed --noconfirm -
fi
# ============================================================
# Phase 7: User-Level Configuration
# ============================================================