diff options
| author | Jack Nagel | 2014-08-13 11:09:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-13 11:09:57 -0500 |
| commit | 5c1c9e655055bf5004d849546506d148acde6a07 (patch) | |
| tree | 958b8cf12735cbe7ed8cd2107b9ef3c97f8aa21c /Library | |
| parent | 9f14262d921bed0cf718bc5a7aded551955673c9 (diff) | |
| download | brew-5c1c9e655055bf5004d849546506d148acde6a07.tar.bz2 | |
Only store strings in the tab object
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/tab.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb index edba1d0e6..202c02302 100644 --- a/Library/Homebrew/tab.rb +++ b/Library/Homebrew/tab.rb @@ -11,8 +11,8 @@ class Tab < OpenStruct FILENAME = 'INSTALL_RECEIPT.json' def self.create(formula, compiler, stdlib, build) - Tab.new :used_options => build.used_options, - :unused_options => build.unused_options, + Tab.new :used_options => build.used_options.map(&:to_s), + :unused_options => build.unused_options.map(&:to_s), :tabfile => formula.prefix.join(FILENAME), :built_as_bottle => !!ARGV.build_bottle?, :poured_from_bottle => false, |
