mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-03-01 07:13:26 +00:00
chore(Containerfile): Fix loop logic (#2201)
This commit is contained in:
parent
f2091c6ebf
commit
307bace01e
@ -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[$repo]}; do dnf5 -y swap --repo=$repo $package $package; done; \
|
||||
for package in "${toswap[@]}"; do dnf5 -y swap --repo=$repo $package $package; done; \
|
||||
done && unset -v toswap repo package && \
|
||||
dnf5 -y install --enable-repo="*rpmfusion*" \
|
||||
libaacs \
|
||||
|
Loading…
x
Reference in New Issue
Block a user