diff --git a/Library/Homebrew/dev-cmd/typecheck.rb b/Library/Homebrew/dev-cmd/typecheck.rb index b3a2c50267..b9f00a5446 100644 --- a/Library/Homebrew/dev-cmd/typecheck.rb +++ b/Library/Homebrew/dev-cmd/typecheck.rb @@ -56,7 +56,10 @@ module Homebrew "webrobots", # RBI file is bugged "sorbet-static-and-runtime", # Unnecessary RBI - remove this entry with Tapioca 0.8 ] - tapioca_args = ["--exclude", *excluded_gems] + typed_overrides = [ + "msgpack:false", # Investigate removing this with Tapioca 0.8 + ] + tapioca_args = ["--exclude", *excluded_gems, "--typed-overrides", *typed_overrides] tapioca_args << "--all" if args.all? ohai "Updating Tapioca RBI files..."