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:
Jay Modi 2017-06-19 12:43:26 -06:00 committed by GitHub
parent 929194ef05
commit 0d6c47fe14
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}