From a250e76cfc2b0c6c9e0e5fcbf134299e9c79431a Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 1 May 2026 17:10:02 +0200 Subject: [PATCH] Fix dnf5 command syntax in 10-repos.sh --- build/10-repos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/10-repos.sh b/build/10-repos.sh index c76d32e..fc01c08 100755 --- a/build/10-repos.sh +++ b/build/10-repos.sh @@ -1,7 +1,7 @@ #!/usr/bin/bash set -eoux pipefail -dnf5 -y install \ +dnf5 install -y \ https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \ https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -dnf5 -y clean all +dnf5 clean all ||true