I am attempting to add a new iOS app into bitrise, but during the validation process I am getting the error: contents.xcworkspacedata does not exist at: PROJECT.xcworkspace/contents.xcworkspacedata
When I look in my repo and my local folder, I notice a couple of things:
- The repo contains both a
PROJECT.xcworkspaceand aproject.xcworkspace, but my local folder only contains aPROJECT.xcworkspace - Even more strange, is that in the repo, the lowercased workspace
folder contains the
contents.xcworkspacedatafile and the uppercased workspace folder contains thexcshareddatafolder (neither contain xcuserdata as that is ignored) - My local
PROJECT.xcworkspacecontains all that is expected (i.e.contents.xcworkspacedata,xcshareddata/, andxcuserdata/)
Bitrise validation is failing because it is looking for the file in PROJECT.xcworkspace in the repo, not project.xcworkspace where that file is actually located.
The name of the workspace has always been capitalized from the initialization of the project, so I don't understand why there would be a lowercased version in the repo.
Is this some random bug that occurred, or what is a good way to resolve this issue?