Skip to content
Snippets Groups Projects
Commit 5d0957ac authored by miccal's avatar miccal
Browse files

cask/artifact/symlinked: allow --force to overwrite symbolic links

parent 742b3faa
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ module Cask ...@@ -40,7 +40,7 @@ module Cask
private private
def link(**options) def link(force: false, **options)
unless source.exist? unless source.exist?
raise CaskError, raise CaskError,
"It seems the #{self.class.link_type_english_name.downcase} " \ "It seems the #{self.class.link_type_english_name.downcase} " \
...@@ -48,9 +48,16 @@ module Cask ...@@ -48,9 +48,16 @@ module Cask
end end
if target.exist? if target.exist?
raise CaskError, message = "It seems there is already #{self.class.english_article} " \
"It seems there already exists #{self.class.english_article} " \ "#{self.class.english_name} at '#{target}'"
"#{self.class.english_name} at '#{target}'; not overwriting."
if force && target.symlink? && \
(target.realpath == source.realpath || target.realpath.to_s.start_with?("#{cask.caskroom_path}/"))
opoo "#{message}; overwriting."
target.delete
else
raise CaskError, "#{message}."
end
end end
ohai "Linking #{self.class.english_name} '#{source.basename}' to '#{target}'." ohai "Linking #{self.class.english_name} '#{source.basename}' to '#{target}'."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment