aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-11-27 14:44:39 -0800
committerCharlie Sharpsteen2011-11-27 14:44:39 -0800
commit3cd9b6db6a9b30deb8cb66d74496bdc189eba728 (patch)
treeb923d52abd6dc123a8f4fbcc4187f4468244b796 /Library
parent00659f0f39095da2b81043f315cc8a7f57522543 (diff)
downloadbrew-3cd9b6db6a9b30deb8cb66d74496bdc189eba728.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.rb2
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