diff options
| author | Jack Nagel | 2014-08-13 11:09:57 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-08-13 11:09:57 -0500 | 
| commit | 268cd143bef42acd82b52dd39ba05a3beda86275 (patch) | |
| tree | b2bf5f24c9a31451cd007415947f22c1aea7ba7e /Library/Homebrew/formula_installer.rb | |
| parent | 094c184b12b29c5978b3c669352991650fcba313 (diff) | |
| download | brew-268cd143bef42acd82b52dd39ba05a3beda86275.tar.bz2 | |
Replace Options.coerce with an alternate constructor
Diffstat (limited to 'Library/Homebrew/formula_installer.rb')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 02e61587b..d9e72702b 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -465,7 +465,7 @@ class FormulaInstaller    end    def build_argv -    opts = Options.coerce(sanitized_ARGV_options) +    opts = Options.create(sanitized_ARGV_options)      opts.concat(options)      opts    end  | 
