mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
Modify the way we fetch the installed version of the plugin
Fixes #2025 Fixes #2063
This commit is contained in:
parent
c1018129f4
commit
ab71a674ba
1 changed files with 3 additions and 2 deletions
|
@ -58,8 +58,9 @@ class LogStash::PluginManager::Install < Clamp::Command
|
||||||
options[:document] = []
|
options[:document] = []
|
||||||
inst = Gem::DependencyInstaller.new(options)
|
inst = Gem::DependencyInstaller.new(options)
|
||||||
inst.install plugin, version
|
inst.install plugin, version
|
||||||
specs, _ = inst.installed_gems
|
specs = inst.installed_gems
|
||||||
puts ("Successfully installed '#{specs.name}' with version '#{specs.version}'")
|
specs.reject! { |gemspec| gemspec.name != gem_meta.name }
|
||||||
|
puts ("Successfully installed '#{specs.first.name}' with version '#{specs.first.version}'")
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue