aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/cmd/bottle.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index f642d458d..da915af15 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -203,10 +203,9 @@ module Homebrew
tab = Tab.for_keg(keg)
original_tab = tab.dup
- empty_tab = Tab.empty
- tab["poured_from_bottle"] = empty_tab["poured_from_bottle"]
- tab["HEAD"] = empty_tab["HEAD"]
- tab["time"] = empty_tab["time"]
+ 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) }