From c011672bc24376b5dd0eea5c84426178e033c65e Mon Sep 17 00:00:00 2001 From: nevaforget Date: Mon, 30 Mar 2026 23:03:58 +0200 Subject: [PATCH] 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. --- scripts/transform.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/transform.sh b/scripts/transform.sh index 6ef3868..34b9c7f 100755 --- a/scripts/transform.sh +++ b/scripts/transform.sh @@ -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 # ============================================================