aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-02-16 21:19:35 -0600
committerJack Nagel2013-02-16 21:19:35 -0600
commit57337a07489379792a5da54b7eabf86c7ef4c317 (patch)
tree59e0d95c9bea9ebb0fc447bc14fd6a99f750d113
parentf93b4f44ad4995b1b6ddceec4615d78d8a6d6ea4 (diff)
downloadbrew-57337a07489379792a5da54b7eabf86c7ef4c317.tar.bz2
Fix serialization of used_options
-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