Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
[Definition] Only consider runtime deps in path source comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Dec 21, 2016
1 parent 3a87fe6 commit 5e4fa53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bundler/definition.rb
Expand Up @@ -752,7 +752,7 @@ def converge_locked_specs

deps2 = other.dependencies.select {|d| d.type != :development }
# If the dependencies of the path source have changed, unlock it
next unless s.dependencies.sort == deps2.sort
next unless s.runtime_dependencies.sort == deps2.sort
end

converged << s
Expand Down

0 comments on commit 5e4fa53

Please sign in to comment.