aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-08-13 18:16:25 -0500
committerJack Nagel2014-08-13 18:16:25 -0500
commit0d6ceaf86ea5987fd78db80d8aca95dc86b4b6f0 (patch)
tree7d692443edbeabc640b3b74f1f0e001d91b8f36c
parentd443089270addfc9588c9efba399763523b88de4 (diff)
downloadbrew-0d6ceaf86ea5987fd78db80d8aca95dc86b4b6f0.tar.bz2
Simplify build_argv
-rw-r--r--Library/Homebrew/formula_installer.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index d9e72702b..e7cd7d938 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -465,9 +465,7 @@ class FormulaInstaller
end
def build_argv
- opts = Options.create(sanitized_ARGV_options)
- opts.concat(options)
- opts
+ Options.create(sanitized_ARGV_options) + options
end
def build