Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Options and flags:
--disable-sandbox
Whether to not use the sandbox
--max-buffer-size <integer>
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 <uri>
Additional repo config file (can be used multiple times)
--disable-default-repo-config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down