diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -142,13 +142,14 @@ begin updater = RefreshBrew.new old_revision = updater.current_revision unless updater.update_from_masterbrew! - ohai "Already up-to-date." + puts "Already up-to-date." else - ohai "Updated Homebrew from #{old_revision} to #{updater.current_revision}." + puts "Updated Homebrew from #{old_revision} to #{updater.current_revision}." if updater.pending_formulae_changes? - ohai "The following formulae were updated: #{updater.updated_formulae.join(', ')}" + ohai "The following formulae were updated:" + puts_columns updater.updated_formulae else - ohai "No formulae were updated." unless updater.pending_formulae_changes? + puts "No formulae were updated." unless updater.pending_formulae_changes? end end |
