We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5557f30 commit 3803e4aCopy full SHA for 3803e4a
src/solver/cli_options.jl
@@ -4,9 +4,10 @@ function argparse_settings()
4
s = ArgParse.ArgParseSettings()
5
ArgParse.@add_arg_table! s begin
6
"--config_file"
7
- help = "A yaml file used to set model configurations"
+ help = "A yaml file used to set model configurations. If this is called multiple times, all config files will be merged."
8
+ action = :append_arg
9
arg_type = String
- default = default_config_file
10
+ default = [default_config_file]
11
"--job_id"
12
help = "A unique job identifier, among all possible (parallel) running jobs."
13
0 commit comments