diff options
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 6751b2224..488ef7064 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -325,10 +325,10 @@ class FormulaConflictError < RuntimeError    def message      message = [] -    message << "Cannot install #{formula.full_name} because conflicting formulae are installed.\n" +    message << "Cannot install #{formula.full_name} because conflicting formulae are installed."      message.concat conflicts.map { |c| conflict_message(c) } << ""      message << <<-EOS.undent -      Please `brew unlink #{conflicts.map(&:name)*" "}` before continuing. +      Please `brew unlink #{conflicts.map(&:name) * " "}` before continuing.        Unlinking removes a formula's symlinks from #{HOMEBREW_PREFIX}. You can        link the formula again after the install finishes. You can --force this | 
