diff options
| author | Adam Vandenberg | 2013-05-03 15:53:45 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-03 15:53:45 -0700 |
| commit | 047989b2fe9d9845f9776ed161902454f3da8a9a (patch) | |
| tree | bd122caa2c45ae5f5730355ee20a85c16fde3fc7 /Library | |
| parent | 66c9bb0f429f0b3683b014a534b5227fb97f01fb (diff) | |
| download | homebrew-047989b2fe9d9845f9776ed161902454f3da8a9a.tar.bz2 | |
superenv: svn should provide a list, not a string
Closes #19601.
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/git | 2 |
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] |
