From 4eb7116c9cc0175a37e5c2fd2c1bc2b85bd799b0 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 14 Jul 2013 12:11:41 -0700 Subject: [PATCH] bottle: fix cellar output. --- Library/Homebrew/cmd/bottle.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index 274e3ea6af..611a4b57ec 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