diff options
| author | Adam Vandenberg | 2013-05-03 15:53:45 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-03 15:53:45 -0700 |
| commit | 9f853973d74ebe37c65734fd8992059f950c5d5f (patch) | |
| tree | 3ba9d0d197f51a22fc82688427f49036ad660f99 /Library | |
| parent | 1c12c8b7a22fb9b4dd4b3cff0f3071711e7d6e2d (diff) | |
| download | brew-9f853973d74ebe37c65734fd8992059f950c5d5f.tar.bz2 | |
superenv: svn should provide a list, not a string
Closes Homebrew/homebrew#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] |
