class Aruba::Platforms::UnixWhich::AbsoluteOrRelativePathWhich

Find path for absolute or relative command

def self.match?(program)

def self.match?(program)
  Aruba.platform.absolute_path?(program) || Aruba.platform.relative_command?(program)
end

def call(program, _path)

def call(program, _path)
  return File.expand_path(program) if Aruba.platform.executable?(program)
  nil
end