From 426167726562deadf816592bfc8908116b593fbd Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 22 Oct 2025 21:35:43 -0500 Subject: [PATCH] ci: prepare: Fix Unknown argument error on dnf5 dnf5 does not recognize the `--` argument to mean "end of arguments" like DNF 4 did. To terminate the argument list, we need to use the "and nothing" shell syntax. --- ci/prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/prepare.sh b/ci/prepare.sh index c06b2ca..1197b66 100644 --- a/ci/prepare.sh +++ b/ci/prepare.sh @@ -11,7 +11,7 @@ dnf install -y \ selinux-policy-devel \ tar \ xz \ - -- + && : install -m u=rwx,go= -d "${GNUPGHOME}" cat > "${GNUPGHOME}"/gpg-agent.conf <