From b97359f48efcc7001ffea1f29d8bb138cb17317b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 12 Jun 2024 02:12:22 -0400 Subject: [PATCH] build: Install git too This must be a regression from the timestamp change: 91ed63caf196dd728fb7c7da10bdce40e2008504 Without this we fail to parse the timestamp and get errors; maybe something else changed. Of course, we should use a non-Makefile language for this so we get proper error checking. I may move some of the makefile bits into xtask.rs or so. Signed-off-by: Colin Walters --- hack/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/build.sh b/hack/build.sh index d9e626d1..6e323478 100755 --- a/hack/build.sh +++ b/hack/build.sh @@ -10,3 +10,5 @@ t=$(mktemp --suffix .spec) curl -L -o ${t} https://src.fedoraproject.org/rpms/bootc/raw/rawhide/f/bootc.spec dnf -y builddep "${t}" rm -f "${t}" +# Extra dependencies +dnf -y install git-core