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 62f9059 commit 99d81d3Copy full SHA for 99d81d3
Sources/Cli/Watch.swift
@@ -11,7 +11,9 @@ struct Watch: ParsableCommand {
11
12
mutating func run() {
13
let repo = EventRepo()
14
- let hooks = Loader.readConfig()?.hooks ?? []
+ let config = Loader.readConfig()
15
+ StdOut.print("\(String(describing: config))")
16
+ let hooks = config?.hooks ?? []
17
repo.registerForEventStoreChanges(hooks: hooks)
18
dispatchMain()
19
}
0 commit comments