fix(pipeline-doctor): add gawk to runtimeInputs (#1)

writeShellApplication restricts PATH to runtimeInputs, which omitted gawk.
The token-leak check's line-continuation flattening shells out to awk, so the
doctor crashed with 'awk: command not found' (exit 127) in minimal Nix runtimes
(e.g. the nixos/nix CI image), aborting downstream build/publish in consumer
pipelines. Add gawk so awk resolves.

Verified: nix build .#pipeline-doctor then run against a repo -> 9 passed,
0 failed, exit 0.
This commit is contained in:
Oleks
2026-06-26 09:18:29 +03:00
parent a56d219418
commit 58f090daa5
+1
View File
@@ -58,6 +58,7 @@
coreutils
gnugrep
gnused
gawk
findutils
jq
];