diff --git a/scripts/check/check-forgotten-sibling-tests.mjs b/scripts/check/check-forgotten-sibling-tests.mjs index bc9dd7ba4d..6707fc8aa8 100644 --- a/scripts/check/check-forgotten-sibling-tests.mjs +++ b/scripts/check/check-forgotten-sibling-tests.mjs @@ -173,7 +173,7 @@ function arg(name, fallback = "") { } function git(root, args) { - return execFileSync("git", args, { cwd: root, encoding: "utf8" }); + return execFileSync("git", args, { cwd: root, encoding: "utf8", maxBuffer: 64 * 1024 * 1024 }); } function changedEntries(root, base) {