From 4a85a923b98dced03f1ffa2944f7bd4a7c8c4cdf Mon Sep 17 00:00:00 2001 From: Cyrille Bollu Date: Thu, 10 Nov 2022 11:42:22 +0100 Subject: [PATCH] Fixes yum-builddep blocks action Signed-off-by: Cyrille Bollu --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 1575753..047c80c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -67,7 +67,7 @@ async function run() { } // Installs build dependencies - await exec.exec(`yum-builddep ${specFile.destFullPath}`); + await exec.exec(`yum-builddep -y ${specFile.destFullPath}`); // Execute rpmbuild , -ba generates both RPMS and SPRMS try {