We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c298dcf commit 5f09eb1Copy full SHA for 5f09eb1
test/docker/fedoradev/install-packages.sh
@@ -16,10 +16,10 @@ dnf -y install /usr/bin/xargs
16
while read -r file; do
17
case $file in
18
/*) printf "%s\n" "$file" ;;
19
- *) printf "%s\n" {/usr,}/{,s}bin/"$file" ;;
+ *) printf "%s\n" {/usr,}/bin/"$file" ;;
20
esac
21
done |
22
- xargs dnf --skip-broken -y install
+ xargs dnf -y install --skip-unavailable --skip-broken
23
# --skip-broken: avoid failing on not found packages. Also prevents actually
24
# broken packages from failing the install which is not what we want, but
25
# there doesn't seem to be way to cleanly just skip the not found ones.
0 commit comments