79655624

Date: 2025-06-06 08:37:32
Score: 1.5
Natty:
Report link

I asked GPT. This help me.

def patch_grpc_template_error
  files_to_patch = [
    'Pods/gRPC-Core/src/core/lib/promise/detail/basic_seq.h',
    'Pods/gRPC-C++/src/core/lib/promise/detail/basic_seq.h'
  ]

  files_to_patch.each do |file|
    if File.exist?(file)
      puts "⚙️ sed patch: #{file}"
      system("sed -i '' 's/Traits::template CallSeqFactory/Traits::CallSeqFactory/' #{file}")
    end
  end
end

post_install do |installer|
  patch_grpc_template_error
end
Reasons:
  • Blacklisted phrase (1): help me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wade_Yang