79141938

Date: 2024-10-30 16:22:02
Score: 1
Natty:
Report link

Ever since the release of a new xcodeproj ruby gem version 1.26.0 on 27th Oct 2024, we started seeing rsync.samba errors on our Xcode projects when we were building using Xcode 15.x.

The solution for this was to explicitly add a version lock to xcodeproj version 1.25.0 in our project's Gemfile.

gem 'xcodeproj', '1.25.0'

Post this change we need to run:

(If you are not using Gemfile or bundler to manage gems, check the version of locally installed xcodeproj version using xcodeproj --version. And uninstall the 1.26.0 version using gem uninstall xcodeproj.)

Why does this help fix the build errors?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix the build errors?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: asifmohd