From 1283c994cacf303921a38b36f244a4f2d78415d6 Mon Sep 17 00:00:00 2001 From: Jeffstein Date: Mon, 12 Jan 2026 19:51:47 -0800 Subject: [PATCH] Fixed dnf5 config-manager addrepo command syntax I updated the dnf5 syntax from 'dnf config-manager addrepo --from-repofile=' to 'dnf config-manager addrepo --from-repofile ' --- scripts/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index d849509aa..a7d75d669 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -594,7 +594,8 @@ if ! [ -x "$(command -v docker)" ]; then "centos" | "fedora" | "rhel") if [ -x "$(command -v dnf5)" ]; then # dnf5 is available - dnf config-manager addrepo --from-repofile=https://download.docker.com/linux/$OS_TYPE/docker-ce.repo --overwrite >/dev/null 2>&1 + dnf config-manager addrepo --from-repofile https://download.docker.com/linux/$OS_TYPE/docker-ce.repo + --overwrite >/dev/null 2>&1 else # dnf5 is not available, use dnf dnf config-manager --add-repo=https://download.docker.com/linux/$OS_TYPE/docker-ce.repo >/dev/null 2>&1