aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/spec/support/file_helper.rb
blob: abe7b26180332df7bd55e7634b38f56c9353a4e0 (plain)
1
2
3
4
5
6
7
8
module FileHelper
  module_function

  def valid_alias?(candidate)
    return false unless candidate.symlink?
    candidate.readlink.exist?
  end
end