quaint-telephone-89068
01/09/2023, 11:24 PMshell backend, but: it looks like Pants' shellcheck integration does not set -x by default. The impact of this seems to be that shellcheck will never follow a reference like:
source some/literal/filename.sh
...and will error instead, even if it has properly been inferred as a dependency: i.e., even if ./pants dependencies on the first file shows the second file.
This can be fixed by setting:
[shellcheck]
args = ["-x"]
pantsbuild/pants