aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-02-16 21:19:35 -0600
committerJack Nagel2013-02-16 21:19:35 -0600
commit9a6d4168b978899ec3b59b504954355d72c059af (patch)
tree8c2ab0349e5a91e3ee4e9fea46462875b8108306 /Library
parentc61e7151783cd162928877c7ec8eee6031372ce7 (diff)
downloadhomebrew-9a6d4168b978899ec3b59b504954355d72c059af.tar.bz2
Fix serialization of used_options
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 256959bcb..6d45d5ae3 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -504,7 +504,7 @@ class Formula
hsh["installed"] << {
"version" => keg.basename.to_s,
- "used_options" => tab.used_options,
+ "used_options" => tab.used_options.map(&:flag),
"built_as_bottle" => tab.built_bottle
}
end