Commit d3530b1
docs(plugins): correct keystore CLI option names in README
Two CLI flags in plugins/README.md did not match the actual @option
declarations in the picocli command classes — users following the docs
verbatim would hit "Unknown option" errors:
- `keystore import` was documented with `--private-key-file`, but the
actual option in KeystoreImport.java:41 is `--key-file`. Updated the
full-command synopsis and the example accordingly, and added the
missing `--force` flag (used by the duplicate-address override path).
- `keystore update` was documented with a separate `--new-password-file`,
but KeystoreUpdate.java only defines a single `--password-file` whose
contents are a two-line file (current password, then new password).
Removed the bogus flag and added an explicit note next to the synopsis
describing the expected file format, plus an updated entry in the
Common Options list.
No code changes — purely documentation alignment so the README matches
the implemented CLI surface.1 parent 29d7d20 commit d3530b1
1 file changed
Lines changed: 9 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
179 | 179 | | |
180 | | - | |
181 | | - | |
| 180 | + | |
| 181 | + | |
182 | 182 | | |
183 | 183 | | |
184 | 184 | | |
| |||
201 | 201 | | |
202 | 202 | | |
203 | 203 | | |
204 | | - | |
| 204 | + | |
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
208 | 208 | | |
209 | 209 | | |
| 210 | + | |
| 211 | + | |
210 | 212 | | |
211 | 213 | | |
212 | 214 | | |
213 | | - | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
214 | 218 | | |
215 | 219 | | |
216 | 220 | | |
0 commit comments