diff --git a/ql/lib/codeql/actions/Bash.qll b/ql/lib/codeql/actions/Bash.qll index 672f7727f5b..c1e038069eb 100644 --- a/ql/lib/codeql/actions/Bash.qll +++ b/ql/lib/codeql/actions/Bash.qll @@ -4,7 +4,7 @@ class BashShellScript extends ShellScript { BashShellScript() { exists(Run run | this = run.getScript() and - run.getShell().matches("bash%") + run.getShell().matches(["bash%", "sh"]) ) }