From 186ee799bbb0556e279bc2aa28aae8e1a8f8f282 Mon Sep 17 00:00:00 2001 From: Kellen Dye Date: Fri, 5 Dec 2025 14:27:36 -0500 Subject: [PATCH] Bump max-buffer-size to 65536 --- docs/help.md | 2 +- .../src/main/scala/org/scalasteward/core/application/Cli.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/help.md b/docs/help.md index e62f9443e2..e3e1cafcb5 100644 --- a/docs/help.md +++ b/docs/help.md @@ -53,7 +53,7 @@ Options and flags: --disable-sandbox Whether to not use the sandbox --max-buffer-size - Size of the buffer for the output of an external process in lines; default: 49152 + Size of the buffer for the output of an external process in lines; default: 65536 --repo-config Additional repo config file (can be used multiple times) --disable-default-repo-config diff --git a/modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala b/modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala index 1e7c72223e..03a261dede 100644 --- a/modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala +++ b/modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala @@ -182,7 +182,7 @@ object Cli { (whitelist, readOnly, enableSandbox).mapN(SandboxCfg.apply) private val maxBufferSize: Opts[Int] = { - val default = 49152 + val default = 65536 val help = s"Size of the buffer for the output of an external process in lines; default: $default" option[Int](name.maxBufferSize, help).withDefault(default)