From 3dec590cb5dd115019ee84ca8ead4e7d2579cd9c Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Date: Wed, 27 Oct 2021 18:33:07 +0200 Subject: [PATCH] Install go binaries and git during .copr build Fixes: ``` stdout: make srpm # from the project top level makefile make[1]: Entering directory '/mnt/workdir-yagcubnt/microshift' /usr/bin/bash: line 1: go: command not found ``` Signed-off-by: Miguel Angel Ajo --- .copr/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.copr/Makefile b/.copr/Makefile index f005fb1b07..5f209b57ba 100644 --- a/.copr/Makefile +++ b/.copr/Makefile @@ -13,5 +13,6 @@ outdir ?= /tmp srpm: + dnf -y install golang-bin git make srpm # from the project top level makefile - cp packaging/rpm/_rpmbuild/SRPMS/*.src.rpm $(outdir) \ No newline at end of file + cp packaging/rpm/_rpmbuild/SRPMS/*.src.rpm $(outdir)