diff options
| author | Adam Vandenberg | 2010-09-22 08:59:38 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-09-29 22:01:17 -0700 |
| commit | bfd2ab0f1b8eaf4f236b552a45f44e7c0637ce1b (patch) | |
| tree | a946c05b16c3b527624c918d61931f45ca47c916 /bin | |
| parent | eedaa0d2f0e5707f2e43dd7f94b34883405cf25e (diff) | |
| download | homebrew-bfd2ab0f1b8eaf4f236b552a45f44e7c0637ce1b.tar.bz2 | |
Use %w quoting in ENV list
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -302,7 +302,7 @@ begin # Check for an external shell command if system "/usr/bin/which -s brew-#{arg}" # Add some Homebrew vars to the ENV - ['CACHE', 'CELLAR', 'LIBRARY_PATH', 'PREFIX', 'REPOSITORY'].each do |e| + %w(CACHE CELLAR LIBRARY_PATH PREFIX REPOSITORY).each do |e| ENV["HOMEBREW_#{e}"] = eval("HOMEBREW_#{e}") end exec("brew-#{arg}", *ARGV) |
