File tree 2 files changed +2
-2
lines changed
modules/core/src/main/scala/org/scalasteward/core/application
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Options and flags:
57
57
--disable-sandbox
58
58
Whether to not use the sandbox
59
59
--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
61
61
--repo-config <uri>
62
62
Additional repo config file (can be used multiple times)
63
63
--disable-default-repo-config
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ object Cli {
196
196
(whitelist, readOnly, enableSandbox).mapN(SandboxCfg .apply)
197
197
198
198
private val maxBufferSize : Opts [Int ] = {
199
- val default = 16384
199
+ val default = 32768
200
200
val help =
201
201
s " Size of the buffer for the output of an external process in lines; default: $default"
202
202
option[Int ](name.maxBufferSize, help).withDefault(default)
You can’t perform that action at this time.
0 commit comments