From: Ben Crocker <[email protected]> Use test -x instead of dnf to test for presence of shellcheck.
Signed-off-by: Ben Crocker <[email protected]> --- redhat/self-test/0001-shellcheck.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redhat/self-test/0001-shellcheck.bats b/redhat/self-test/0001-shellcheck.bats index 0d838fd254e5..420b863e7453 100644 --- a/redhat/self-test/0001-shellcheck.bats +++ b/redhat/self-test/0001-shellcheck.bats @@ -1,5 +1,5 @@ @test "shellcheck" { - if ! dnf list installed ShellCheck >& /dev/null + if ! test -x /usr/bin/shellcheck >& /dev/null then skip "The ShellCheck package is not installed" fi -- 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]
