BUGFIX: do not install dependencies from plugin, must be explicit
This commit is contained in:
parent
e7c100aed3
commit
ce8bc3682f
|
@ -205,7 +205,7 @@ class Plugin::Instance
|
|||
spec_path = gems_path + "/specifications"
|
||||
spec_file = spec_path + "/#{name}-#{version}.gemspec"
|
||||
unless File.exists? spec_file
|
||||
command = "gem install #{name} -v #{version} -i #{gems_path} --no-document"
|
||||
command = "gem install #{name} -v #{version} -i #{gems_path} --no-document --ignore-dependencies"
|
||||
if opts[:source]
|
||||
command << " --source #{opts[:source]}"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue