We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c78bc5 commit 7eb6d7aCopy full SHA for 7eb6d7a
1 file changed
Sources/Compiler/Config.swift
@@ -25,7 +25,10 @@ public struct Config: Codable {
25
}
26
27
public init(at path: String) throws {
28
+ print("Input Path: \(path)")
29
var url = URL(fileURLWithPath: path)
30
+ print("URL: \(url)")
31
+ print("URL not file: \(URL(string: path)!)")
32
33
if url.lastPathComponent != "puresql.yaml" {
34
url.appendPathComponent("puresql.yaml")
0 commit comments