-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Labels
Description
I'm wondering about this part in the utilities.js
if (filePath.endsWith(path.join('Pods.xcodeproj', 'project.pbxproj'))) {
// The Pods.xcodeproj file isn't currently able to be parsed
// by node-xcode:
// https://github.com/alunny/node-xcode/issues/127
//
// We don't actually need to manipulate it so we'll go ahead and ignore.
return;
}
In my project I have a dependency on https://github.com/tlenclos/react-native-audio-streaming which has a Pods.xcodeproj which also needs to have my staging configurations copied.
If I remove the section above from utilities.js everything works for me, so I'm wondering if perhaps there could be an option when running the script whether to run this check or not, or if it is even needed any more?