Skip to content

Commit 8f85d7d

Browse files
committed
debugging CI paths
1 parent e9ffca5 commit 8f85d7d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/SwiftJavaBootstrapJavaTool/SwiftJavaBootstrapJavaTool.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ final class SwiftJavaBootstrapJavaTool {
4848

4949
assert(args.removeFirst() == "--output-directory")
5050
let outputDirectoryPath = args.removeFirst()
51-
52-
let config = try readConfiguration(configPath: URL(fileURLWithPath: configPath))
51+
52+
let configPathURL = URL(fileURLWithPath: configPath)
53+
print("[debug][swift-java-bootstrap] Load config: \(configPathURL.absoluteString)")
54+
let config = try readConfiguration(configPath: configPathURL)
5355

5456
// We only support a single dependency right now.
5557
let localGradleProjectDependencyName = (config.dependencies ?? []).filter {

0 commit comments

Comments
 (0)