diff options
| author | Jack Nagel | 2014-08-13 18:16:25 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-13 18:16:25 -0500 |
| commit | 8a84e9cc4645b4a0b00227839df12897d5a5e954 (patch) | |
| tree | d51bf41100b46f4d6b5a096c042f63071bfc36d7 | |
| parent | 9d25ecad2433534ea354e0b9fa13a7b0d72201cd (diff) | |
| download | homebrew-8a84e9cc4645b4a0b00227839df12897d5a5e954.tar.bz2 | |
Simplify build_argv
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 4 |
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 |
