aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-05-03 15:53:45 -0700
committerAdam Vandenberg2013-05-03 15:53:45 -0700
commit047989b2fe9d9845f9776ed161902454f3da8a9a (patch)
treebd122caa2c45ae5f5730355ee20a85c16fde3fc7 /Library
parent66c9bb0f429f0b3683b014a534b5227fb97f01fb (diff)
downloadhomebrew-047989b2fe9d9845f9776ed161902454f3da8a9a.tar.bz2
superenv: svn should provide a list, not a string
Closes #19601.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/git2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/git b/Library/Contributions/cmd/git
index 7539ecfc0..888a6ff11 100755
--- a/Library/Contributions/cmd/git
+++ b/Library/Contributions/cmd/git
@@ -25,7 +25,7 @@ end
case F.downcase
when 'git' then %W{HOMEBREW_GIT GIT}
- when 'svn' then "HOMEBREW_SVN"
+ when 'svn' then %W{HOMEBREW_SVN}
else []
end.each do |key|
exec ENV[key], *ARGV if ENV[key] and File.executable? ENV[key]