From: Ben Crocker bcrocker@redhat.com
In dist-self-test target, check for installation of the bats package and complain if it is not installed.
Signed-off-by: Ben Crocker bcrocker@redhat.com --- 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:'