Keystore CLI should use the AddFileKeyStoreCommand for files (#25298)
This commit fixes a typo in the KeyStoreCli class. The add-file command was incorrectly set to use the AddStringKeyStoreCommand instead of the AddFileKeyStoreCommand.
This commit is contained in:
parent
929194ef05
commit
0d6c47fe14
|
@ -32,7 +32,7 @@ public class KeyStoreCli extends MultiCommand {
|
|||
subcommands.put("create", new CreateKeyStoreCommand());
|
||||
subcommands.put("list", new ListKeyStoreCommand());
|
||||
subcommands.put("add", new AddStringKeyStoreCommand());
|
||||
subcommands.put("add-file", new AddStringKeyStoreCommand());
|
||||
subcommands.put("add-file", new AddFileKeyStoreCommand());
|
||||
subcommands.put("remove", new RemoveSettingKeyStoreCommand());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue