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
commit9f853973d74ebe37c65734fd8992059f950c5d5f (patch)
tree3ba9d0d197f51a22fc82688427f49036ad660f99 /Library
parent1c12c8b7a22fb9b4dd4b3cff0f3071711e7d6e2d (diff)
downloadbrew-9f853973d74ebe37c65734fd8992059f950c5d5f.tar.bz2
superenv: svn should provide a list, not a string
Closes Homebrew/homebrew#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]