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)