We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54b512 commit a7dbb90Copy full SHA for a7dbb90
Sources/SwiftJavaBootstrapJavaTool/SwiftJavaBootstrapJavaTool.swift
@@ -95,7 +95,13 @@ final class SwiftJavaBootstrapJavaTool {
95
}
96
97
let classpathString = String(classpathOutput.dropFirst(self.SwiftJavaClasspathPrefix.count))
98
-
+
99
+ _ = try? FileManager.default.createDirectory(
100
+ at: outputDirectoryPath,
101
+ withIntermediateDirectories: true,
102
+ attributes: nil
103
+ )
104
105
let classpathOutputURL =
106
URL(fileURLWithPath: outputDirectoryPath)
107
.appendingPathComponent("\(moduleName).swift-java.classpath", isDirectory: false)
0 commit comments