Skip to content

Commit 53613c5

Browse files
Fix project generation for simple projects (#650)
If a project doesn't have generated, external, or compile stub files, we didn't create the proper internal directory before trying to copy over the compiler stubs. We now create the requires parent directories.
1 parent ff36e21 commit 53613c5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/generator/src/Generator/WriteXcodeProj.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ extension Generator {
2929
}
3030

3131
let dest = internalOutputPath + "bazel"
32+
try internalOutputPath.mkpath()
3233
try bazelIntegrationDirectory.copy(dest)
3334
}
3435
}

0 commit comments

Comments
 (0)