build(script): fix missing sudo for dnf group install (#3227)

This commit is contained in:
ReenigneArcher 2024-09-28 15:02:34 -04:00 committed by GitHub
commit b01ba38774
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -304,7 +304,7 @@ function run_install() {
add_ubuntu_deps add_ubuntu_deps
elif [ "$distro" == "fedora" ]; then elif [ "$distro" == "fedora" ]; then
add_fedora_deps add_fedora_deps
dnf group install "Development Tools" -y ${sudo_cmd} dnf group install "Development Tools" -y
fi fi
# Install the dependencies # Install the dependencies