fix syntactical issues
This commit is contained in:
parent
9ec93f78d6
commit
6d4bce4baa
@ -97,8 +97,8 @@ module Homebrew
|
||||
end
|
||||
|
||||
def display(outdated_packages)
|
||||
ohai "Outdated formulae\n"
|
||||
|
||||
ohai "Outdated formulae"
|
||||
puts
|
||||
outdated_packages.each do |formula, package_details|
|
||||
ohai formula
|
||||
puts "Current formula version: #{package_details[:current_formula_version]}"
|
||||
|
||||
@ -671,7 +671,9 @@ module Homebrew
|
||||
next if status.blank?
|
||||
|
||||
# these will result in uncommitted gems.
|
||||
next if path == HOMEBREW_REPOSITORY && (ENV["HOMEBREW_SORBET"] || ENV["HOMEBREW_PATCHELF_RB"])
|
||||
if path == HOMEBREW_REPOSITORY
|
||||
next if ENV["HOMEBREW_SORBET"] || ENV["HOMEBREW_PATCHELF_RB"]
|
||||
end
|
||||
|
||||
message ||= ""
|
||||
message += "\n" unless message.empty?
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user