We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a group with addGroupWithPath:.
Add a XCClassDefinition to that group, and when you save the project, it will crash saying:
'Error writing file at filePath: /path/to/file/MyNewClass.m, error: Error Domain=NSCocoaErrorDomain Code=4 "The folder “MyNewClass.m” doesn’t exist."
May be because in the commitFileOperations method, the file writes occur before the directories are created:
[self performFileWrites]; [self performCopyFrameworks]; [self performFileDeletions]; [self performCreateDirectories];
Maybe put performCreateDirectories first?
The text was updated successfully, but these errors were encountered:
Oops, oh dear. Yes that sounds like the solution. If off the laptop now but will do tomorrow. Sorry about the bug.
Sorry, something went wrong.
No branches or pull requests
Create a group with addGroupWithPath:.
Add a XCClassDefinition to that group, and when you save the project, it will crash saying:
'Error writing file at filePath: /path/to/file/MyNewClass.m, error: Error Domain=NSCocoaErrorDomain Code=4 "The folder “MyNewClass.m” doesn’t exist."
May be because in the commitFileOperations method, the file writes occur before the directories are created:
Maybe put performCreateDirectories first?
The text was updated successfully, but these errors were encountered: