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 e9ffca5 commit 8d0ffe6Copy full SHA for 8d0ffe6
Sources/SwiftJavaBootstrapJavaTool/SwiftJavaBootstrapJavaTool.swift
@@ -48,8 +48,10 @@ final class SwiftJavaBootstrapJavaTool {
48
49
assert(args.removeFirst() == "--output-directory")
50
let outputDirectoryPath = args.removeFirst()
51
-
52
- let config = try readConfiguration(configPath: URL(fileURLWithPath: configPath))
+
+ let configPath = URL(fileURLWithPath: configPath)
53
+ print("[debug][swift-java-bootstrap] Load config: \(configPath.absoluteString)")
54
+ let config = try readConfiguration(configPath: )
55
56
// We only support a single dependency right now.
57
let localGradleProjectDependencyName = (config.dependencies ?? []).filter {
0 commit comments