aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/bottle.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index da915af15..fe2829c19 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -203,9 +203,9 @@ module Homebrew
tab = Tab.for_keg(keg)
original_tab = tab.dup
- tab["poured_from_bottle"] = false
- tab["HEAD"] = nil
- tab["time"] = nil
+ tab.poured_from_bottle = false
+ tab.HEAD = nil
+ tab.time = nil
tab.write
keg.find {|k| File.utime(File.atime(k), formula_source_time, k) }