Commit f7258cf
doc: --config-opts single-item array wants second to be blank
When specifying an array with a single element using --config-opts, the
user should specify the second item as empty, not the first:
Wrong:
$ mock --config-opts=foo= --config-opts=foo=bar --debug-config | grep foo
config_opts['foo'] = ['', 'bar']
Correct:
$ mock --config-opts=foo=bar --config-opts=foo= --debug-config | grep foo
config_opts['foo'] = ['bar']
The release notes where the feature was announced,
Release-Notes-1.4.8.md, were correct but the man page was not.1 parent 10edef7 commit f7258cf
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
314 | 314 | | |
315 | 315 | | |
316 | 316 | | |
317 | | - | |
318 | | - | |
| 317 | + | |
| 318 | + | |
319 | 319 | | |
320 | 320 | | |
321 | 321 | | |
| |||
0 commit comments