From 9fcc8193d42aad946a770d3075b7abbc7018fd6a Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Fri, 15 Nov 2024 16:51:34 +0100 Subject: [PATCH] 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 --- contrib/cirrus/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/cirrus/setup.sh b/contrib/cirrus/setup.sh index b584f63ce..97e79b852 100755 --- a/contrib/cirrus/setup.sh +++ b/contrib/cirrus/setup.sh @@ -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" ]] || \