From 5c1c9e655055bf5004d849546506d148acde6a07 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 13 Aug 2014 11:09:57 -0500 Subject: Only store strings in the tab object --- Library/Homebrew/tab.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Library') 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, -- cgit v1.2.3