Skip to content

Commit 4aa7bea

Browse files
committed
containers/dnf: drop -- from dnf install
For some reason, the new dnf version no longer supports separating non-option inputs via `--`. Lets just drop it, as there is virtually no documentation on this, and we use static input anyway. Signed-off-by: David Rheinsberg <david@readahead.eu>
1 parent 2d95aad commit 4aa7bea

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/containers/tools/dnf.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ if (( ${#CAB_PACKAGES[@]} )) ; then
5151
--setopt=fastestmirror=True \
5252
--setopt=install_weak_deps=False \
5353
install \
54-
-- \
5554
"${CAB_PACKAGES[@]}"
5655
fi
5756

@@ -61,7 +60,6 @@ if (( ${#CAB_GROUPS[@]} )) ; then
6160
--setopt=fastestmirror=True \
6261
--setopt=install_weak_deps=False \
6362
group install \
64-
-- \
6563
"${CAB_GROUPS[@]}"
6664
fi
6765

0 commit comments

Comments
 (0)