Douglas Eichelberger 24cf6076e8 brew style --fix
2023-04-24 20:42:39 -07:00

12 lines
214 B
Ruby

# typed: strict
# frozen_string_literal: true
class Cleaner
private
sig { params(path: Pathname).returns(T.nilable(T::Boolean)) }
def executable_path?(path)
path.elf? || path.text_executable?
end
end