aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-12-03 21:13:02 -0600
committerJack Nagel2013-12-03 21:13:02 -0600
commitce03469916986421683601637e5b0687bfd650a3 (patch)
tree31f926acfb3a1571d1cf8b12b67e81f53b7dad3d
parentbf9f480dd879daf4269dbb3ebb4c6c53cf7245af (diff)
downloadhomebrew-ce03469916986421683601637e5b0687bfd650a3.tar.bz2
SubversionDownloadStrategy: no need to escape 'svn'
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 6957ae171..ce2185d6a 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -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