Skip to content

Commit

Permalink
Keep houndci from barking.
Browse files Browse the repository at this point in the history
  • Loading branch information
neonichu committed Apr 19, 2014
1 parent aaf5d0b commit c108b1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cocoapods-core/source/acceptor.rb
Expand Up @@ -68,8 +68,8 @@ def check_spec_source_change(spec, errors)
source = spec.source.values_at(*keys).compact.first
old_source = reference_spec(spec).source.values_at(*keys).compact.first
unless source == old_source
source = HTTP::get_actual_url(source)
old_source = HTTP::get_actual_url(old_source)
source = HTTP.get_actual_url(source)
old_source = HTTP.get_actual_url(old_source)
unless source == old_source
message = "The source of the spec doesn't match with the recorded "
message << "ones. Source: `#{source}`. Previous: `#{old_source}`.\n "
Expand Down

0 comments on commit c108b1d

Please sign in to comment.