From: Ben Crocker <[email protected]> Using 'test -x' instead of 'dnf list installed' to test for presence of bats package, don't need to redirect stdout & stderr.
Signed-off-by: Ben Crocker <[email protected]> --- redhat/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redhat/Makefile b/redhat/Makefile index e7ba07066177..84950bf876af 100644 --- a/redhat/Makefile +++ b/redhat/Makefile @@ -393,7 +393,7 @@ dist-dump-variables: @$(REDHAT)/dist-dump-variables.sh dist-self-test: - @if test -x /usr/bin/bats >& /dev/null; then \ + @if test -x /usr/bin/bats; then \ bats $(REDHAT)/self-test/*.bats ; \ else \ echo "dist-self-test: The bats package is not installed" ; \ -- 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]
