SubversionDownloadStrategy: fix pathname concatenation

Fixes Homebrew/homebrew#19066.
This commit is contained in:
Jack Nagel 2013-04-08 19:17:56 -05:00
parent 63aace0e4e
commit b681ed4200

View File

@ -216,7 +216,7 @@ class SubversionDownloadStrategy < AbstractDownloadStrategy
@co = HOMEBREW_CACHE + "#{name}--svn" @co = HOMEBREW_CACHE + "#{name}--svn"
end end
@co << "-HEAD" if ARGV.build_head? @co + "-HEAD" if ARGV.build_head?
end end
def cached_location def cached_location