SubversionDownloadStrategy: fix reference to removed method

This commit is contained in:
Jack Nagel 2013-08-15 15:46:03 -05:00
parent 96175fae20
commit 8bb26ee2d9

View File

@ -290,7 +290,7 @@ class SubversionDownloadStrategy < AbstractDownloadStrategy
end
def get_externals
`'#{shell_quote(svn)}' propget svn:externals '#{shell_quote(@url)}'`.chomp.each_line do |line|
`'#{shell_quote(@@svn)}' propget svn:externals '#{shell_quote(@url)}'`.chomp.each_line do |line|
name, url = line.split(/\s+/)
yield name, url
end