Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
Fix failures on go versions parsed as integers (i.e. 2 digits)
Browse files Browse the repository at this point in the history
[#90128514]
  • Loading branch information
Jared Gordon and Sai To Yeung committed Mar 12, 2015
1 parent e8732a3 commit 9f02e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dependencies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def find_dependency_mapping(uri)

def find_dependency_with_mapping(mapping)
@manifest['dependencies'].find do |dependency|
dependency['version'] == mapping['version'] &&
dependency['version'].to_s == mapping['version'].to_s &&
dependency['name'] == mapping['name'] &&
dependency_satisfies_current_stack(dependency)
end
Expand Down

0 comments on commit 9f02e38

Please sign in to comment.