ShellCheck returns the path to the "shellcheck" executable or calls t.Skip.
(t testing.TB)
| 24 | |
| 25 | // ShellCheck returns the path to the "shellcheck" executable or calls t.Skip. |
| 26 | func ShellCheck(t testing.TB) string { t.Helper(); return shellcheck(t) } |
| 27 | |
| 28 | var shellcheck = executable("shellcheck", "--version") |
| 29 |