cirrus: update dnf comamnd for dnf5
dnf erase is no longer a command on dnf5 (new in f41), it has been an alias to remove before so just switch to that as this is the correct command now. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
parent
7453d7195e
commit
9fcc8193d4
|
|
@ -13,7 +13,7 @@ msg "Setting up $OS_RELEASE_ID $OS_RELEASE_VER"
|
|||
case "$OS_RELEASE_ID" in
|
||||
fedora)
|
||||
[[ -z "$RPMS_CONFLICTING" ]] || \
|
||||
$SHORT_DNFY erase $RPMS_CONFLICTING
|
||||
$SHORT_DNFY remove $RPMS_CONFLICTING
|
||||
;;
|
||||
debian)
|
||||
[[ -z "$DEBS_CONFLICTING" ]] || \
|
||||
|
|
|
|||
Loading…
Reference in New Issue