File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
modules/core/src/main/scala/org/scalasteward/core/application Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Options and flags:
5757 --disable-sandbox
5858 Whether to not use the sandbox
5959 --max-buffer-size <integer>
60- Size of the buffer for the output of an external process in lines; default: 16384
60+ Size of the buffer for the output of an external process in lines; default: 32768
6161 --repo-config <uri>
6262 Additional repo config file (can be used multiple times)
6363 --disable-default-repo-config
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ object Cli {
196196 (whitelist, readOnly, enableSandbox).mapN(SandboxCfg .apply)
197197
198198 private val maxBufferSize : Opts [Int ] = {
199- val default = 16384
199+ val default = 32768
200200 val help =
201201 s " Size of the buffer for the output of an external process in lines; default: $default"
202202 option[Int ](name.maxBufferSize, help).withDefault(default)
You can’t perform that action at this time.
0 commit comments