Skip to content

Commit

Permalink
skip vhba exra on F41
Browse files Browse the repository at this point in the history
  • Loading branch information
bsherman committed Oct 9, 2024
1 parent c2ff163 commit 66b732c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build-kmod-vhba.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ if [[ "$RELEASE" -lt 39 ]]; then
exit 0
fi

if [[ "${RELEASE}" -ge 41 ]]; then
if [[ "${FEDORA_MAJOR_VERSION}" -ge 41 ]]; then
echo "Skipping build of vhba; net yet provided by COPR"
exit 0
fi

if [[ "${RELEASE}" -ge 42 ]]; then
COPR_RELEASE="rawhide"
else
COPR_RELEASE="${RELEASE}"
Expand Down

0 comments on commit 66b732c

Please sign in to comment.