From 4e6d315ecbd2c1f1c15df62585a99f83f44a1c79 Mon Sep 17 00:00:00 2001 From: dann frazier Date: Mon, 4 Aug 2025 11:57:40 -0600 Subject: [PATCH] shellcheck_run_steps: Fix missing filename parameter Signed-off-by: dann frazier --- pre_commit_hooks/shellcheck_run_steps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pre_commit_hooks/shellcheck_run_steps.py b/pre_commit_hooks/shellcheck_run_steps.py index 7514b09..35b0c0f 100644 --- a/pre_commit_hooks/shellcheck_run_steps.py +++ b/pre_commit_hooks/shellcheck_run_steps.py @@ -119,6 +119,7 @@ def main(argv: Sequence[str] | None = None) -> int: "compile", f"--arch={os.uname().machine}", "--pipeline-dir=./pipelines", + filename, ], stdout=compiled_out, )