SubversionDownloadStrategy: no need to escape 'svn'

This commit is contained in:
Jack Nagel 2013-12-03 21:13:02 -06:00
parent 6d7a3d7fa4
commit 94333c64c1

View File

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