We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3d53d4 commit b9265dbCopy full SHA for b9265db
hack/build.sh
@@ -5,4 +5,8 @@ case $ID in
5
centos|rhel) dnf config-manager --set-enabled crb;;
6
fedora) dnf -y install dnf-utils ;;
7
esac
8
-dnf -y builddep bootc
+# Fetch the latest spec from fedora to ensure we've got the latest build deps
9
+t=$(mktemp)
10
+curl -L -o ${t} https://src.fedoraproject.org/rpms/bootc/blob/rawhide/f/bootc.spec
11
+dnf -y builddep "${t}"
12
+rm -f "${t}"
0 commit comments