From b61028d0c62a4f45247aeff45f1cef5f7d735d67 Mon Sep 17 00:00:00 2001 From: Miroslav Vadkerti Date: Wed, 22 Apr 2020 15:28:57 +0200 Subject: [PATCH] rpminspect: use env vars Maybe we could avoid passing whole script and this is more nice ... Signed-off-by: Miroslav Vadkerti --- rpminspect.fmf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rpminspect.fmf b/rpminspect.fmf index 39be3b5..6c6941a 100644 --- a/rpminspect.fmf +++ b/rpminspect.fmf @@ -16,8 +16,11 @@ prepare: echo "No build specified" exit 1 fi + dnf -y install dnf-plugins-core + dnf -y copr enable dcantrell/rpminspect dnf -y install rpminspect execute: how: shell - script: rpminspect $ARGS $BUILD + script: + - rpminspect $ARGS $BUILD