remove duplicate list subcommand

When running `./logstash-plugin --help`, there was twice time the list sub command

Fixes #6205
This commit is contained in:
Guillaume Le Floch 2016-11-07 17:03:18 +01:00 committed by Suyog Rao
parent ee822debf3
commit 1a0fcfd211

View file

@ -34,7 +34,6 @@ module LogStash
subcommand "update", "Update a plugin", LogStash::PluginManager::Update
subcommand "pack", "Package currently installed plugins", LogStash::PluginManager::Pack
subcommand "unpack", "Unpack packaged plugins", LogStash::PluginManager::Unpack
subcommand "list", "List all installed plugins", LogStash::PluginManager::List
subcommand "generate", "Create the foundation for a new plugin", LogStash::PluginManager::Generate
subcommand "uninstall", "Uninstall a plugin. Deprecated: Please use remove instead", LogStash::PluginManager::Uninstall
end