Issy Long 6a704f2f40
sorbet: Bump more files to typed: true
- This was done through the `brew typecheck --suggest-typed --update`
  command.
2023-03-05 18:18:59 +00:00

15 lines
270 B
Ruby

# typed: true
# frozen_string_literal: true
module Homebrew
class Cleanup
undef use_system_ruby?
def use_system_ruby?
return false if Homebrew::EnvConfig.force_vendor_ruby?
ENV["HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH"].present?
end
end
end