We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fb1216 commit 9ba7d4bCopy full SHA for 9ba7d4b
1 file changed
scripts/printCommitStats.mjs
@@ -75,7 +75,10 @@ function toRatioString(
75
}
76
77
(async () => {
78
- const { stdout: diffContent } = await promisify(exec)('git diff origin/main', { encoding: 'utf-8' });
+ const { stdout: diffContent } = await promisify(exec)('git diff origin/main', {
79
+ encoding: 'utf-8',
80
+ maxBuffer: 50 * 1024 * 1024
81
+ });
82
83
const patches = parsePatch(diffContent);
84
0 commit comments