diff --git a/Library/Homebrew/cask/artifact/symlinked.rb b/Library/Homebrew/cask/artifact/symlinked.rb index 7acb7e9694..b50c104dc4 100644 --- a/Library/Homebrew/cask/artifact/symlinked.rb +++ b/Library/Homebrew/cask/artifact/symlinked.rb @@ -44,10 +44,10 @@ module Cask "source '#{source}' is not there." end - if target.exist? && !target.symlink? + if target.exist? raise CaskError, - "It seems there is already #{self.class.english_article} " \ - "#{self.class.english_name} at '#{target}'; not linking." + "It seems there already exists #{self.class.english_article} " \ + "#{self.class.english_name} at '#{target}'; not overwriting." end ohai "Linking #{self.class.english_name} '#{source.basename}' to '#{target}'."