aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/bottle.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index 274e3ea6a..611a4b57e 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -19,9 +19,12 @@ module Homebrew extend self
puts "bottle do"
prefix = bottle.prefix.to_s
puts " prefix '#{prefix}'" if prefix != '/usr/local'
- cellar = bottle.cellar.to_s
- cellar = ":#{bottle.cellar}" if bottle.cellar.is_a? Symbol
- puts " cellar '#{cellar}'" if bottle.cellar.to_s != '/usr/local/Cellar'
+ cellar = if bottle.cellar.is_a? Symbol
+ ":#{bottle.cellar}"
+ elsif bottle.cellar.to_s != '/usr/local/Cellar'
+ "'bottle.cellar'"
+ end
+ puts " cellar #{cellar}" if cellar
puts " revision #{bottle.revision}" if bottle.revision > 0
Checksum::TYPES.each do |checksum_type|
checksum_os_versions = bottle.send checksum_type