Exception: Keg::ConflictError Private
- Defined in:
- Library/Homebrew/keg.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Error for when a file already exists or belongs to another keg.
Instance Attribute Summary
Attributes inherited from LinkError
Instance Method Summary collapse
- #suggestion ⇒ Object private
- #to_s ⇒ Object private
Methods inherited from LinkError
Constructor Details
This class inherits a constructor from Keg::LinkError
Instance Method Details
#suggestion ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
42 43 44 45 46 47 48 49 50 51 |
# File 'Library/Homebrew/keg.rb', line 42 def suggestion conflict = Keg.for(dst) rescue NotAKegError, Errno::ENOENT "already exists. You may want to remove it:\n rm '#{dst}'\n" else <<~EOS is a symlink belonging to #{conflict.name}. You can unlink it: brew unlink #{conflict.name} EOS end |
#to_s ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'Library/Homebrew/keg.rb', line 53 def to_s s = [] s << "Could not symlink #{src}" s << "Target #{dst}" << suggestion s << <<~EOS To force the link and overwrite all conflicting files: brew link --overwrite #{keg.name} To list all files that would be deleted: brew link --overwrite --dry-run #{keg.name} EOS s.join("\n") end |