From 5f3ac76329cb26f9eea4b459806a5885deb20e44 Mon Sep 17 00:00:00 2001 From: "Victor M. Varela" Date: Fri, 1 May 2026 17:42:31 +0200 Subject: [PATCH] fix: replace dnf config-manager --add-repo with curl to support DNF5 DNF5 (Fedora 41+, RHEL 10) removed the --add-repo argument from config-manager. Use curl to drop the .repo file directly into /etc/yum.repos.d/, which works on both DNF4 and DNF5. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d13588..6c373b3 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,8 @@ Replace `VERSION` with the release version (e.g. `0.3.0`) and `amd64` with your **Fedora / RHEL / openSUSE (RPM repository):** ```sh -sudo dnf config-manager --add-repo https://vmvarela.github.io/rpm-packages/vmvarela.repo +sudo curl -fsSL https://vmvarela.github.io/rpm-packages/vmvarela.repo \ + -o /etc/yum.repos.d/vmvarela.repo sudo dnf install sql-pipe ```