From: Ben Crocker <[email protected]>

In dist-self-test target, check for installation of the
bats package and complain if it is not installed.

Signed-off-by: Ben Crocker <[email protected]>
---
 redhat/Makefile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/redhat/Makefile b/redhat/Makefile
index a7656b7bb4b7..555dea25ea0f 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -393,7 +393,11 @@ dist-dump-variables:
        @$(REDHAT)/dist-dump-variables.sh
 
 dist-self-test:
-       @bats $(REDHAT)/self-test/*.bats
+       @if dnf list installed bats >& /dev/null; then \
+               bats $(REDHAT)/self-test/*.bats ; \
+       else \
+               echo "dist-self-test: The bats package is not installed" ; \
+       fi
 
 dist-help:
        @echo  'Cleaning targets:'
-- 
GitLab
_______________________________________________
kernel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]

Reply via email to