From 963559c6ba2d8e9f26e9e73b5fe297fb465845b3 Mon Sep 17 00:00:00 2001 From: Zeglius <33781398+Zeglius@users.noreply.github.com> Date: Thu, 30 Jan 2025 19:46:43 +0100 Subject: [PATCH] Restore functioning loop (#2210) --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index c95324f3ea..4c11871d0e 100644 --- a/Containerfile +++ b/Containerfile @@ -178,7 +178,7 @@ RUN --mount=type=cache,dst=/var/cache/libdnf5 \ ["copr:copr.fedorainfracloud.org:ublue-os:staging"]="fwupd" \ ) && \ for repo in "${!toswap[@]}"; do \ - for package in "${toswap[@]}"; do dnf5 -y swap --repo=$repo $package $package; done; \ + for package in ${toswap[$repo]}; do dnf5 -y swap --repo=$repo $package $package; done; \ done && unset -v toswap repo package && \ dnf5 -y install --enable-repo="*rpmfusion*" \ libaacs \