diff options
| author | Charlie Sharpsteen | 2011-11-27 14:44:39 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-27 14:44:39 -0800 |
| commit | 132bbc1bbb84a39cdf3f69c6809633901ae73e7a (patch) | |
| tree | 6a0947782d728d43825b423ec68047fbbbd91ae1 /Library | |
| parent | bdb1d7bd3314fb62d02681d578ffb1d25320847e (diff) | |
| download | homebrew-132bbc1bbb84a39cdf3f69c6809633901ae73e7a.tar.bz2 | |
Fix array concatenation in ARGV.filter_for_dependencies
Gah. This was supposed to be in the last commit, but I forgot to `--amend` it.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/ARGV.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ARGV.rb b/Library/Homebrew/extend/ARGV.rb index 2132498df..959fd6a67 100644 --- a/Library/Homebrew/extend/ARGV.rb +++ b/Library/Homebrew/extend/ARGV.rb @@ -108,7 +108,7 @@ module HomebrewArgvExtension --interactive -i --HEAD ] - flags_to_clear << %[--verbose -v] if quieter? + flags_to_clear.concat %w[--verbose -v] if quieter? flags_to_clear.each {|flag| delete flag} yield |
