mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
EPEL?
This commit is contained in:
2
.github/workflows/bootstrap_testing.yml
vendored
2
.github/workflows/bootstrap_testing.yml
vendored
@@ -54,7 +54,7 @@ jobs:
|
||||
apt-get install -y sudo git passwd
|
||||
;;
|
||||
fedora:*|rockylinux:*|almalinux:*)
|
||||
dnf install -y sudo git passwd findutils epel-release # findutils=xargs, epel-release for hidapi
|
||||
dnf install -y sudo git passwd findutils # findutils=xargs
|
||||
;;
|
||||
archlinux:*)
|
||||
pacman -Syu --noconfirm
|
||||
|
||||
@@ -279,8 +279,9 @@ __EOT__
|
||||
*fedora*)
|
||||
echo "It will also install the following system packages using 'dnf':" >&2
|
||||
print_package_manager_deps_and_delay
|
||||
# Some RHEL-likes need EPEL for hidapi
|
||||
$(nsudo) dnf -y install epel-release 2>/dev/null || true
|
||||
# RHEL-likes have some naming differences in libusb packages, so manually handle those
|
||||
$(nsudo) dnf -y install epel-release
|
||||
$(nsudo) dnf -y install $(get_package_manager_deps | tr ' ' '\n' | grep -v 'epel-release' | grep -v libusb | tr '\n' ' ')
|
||||
for pkg in $(get_package_manager_deps | tr ' ' '\n' | grep libusb); do
|
||||
$(nsudo) dnf -y install "$pkg" 2>/dev/null || true
|
||||
|
||||
Reference in New Issue
Block a user