-
Notifications
You must be signed in to change notification settings - Fork 755
Closed
Milestone
Description
If I understood correctly, this is where SwiftGen starts the process of running commands from configs:
SwiftGen/Sources/SwiftGen/Commander/ConfigCommands.swift
Lines 117 to 120 in 1cf0a8f
try file.parent().chdir { | |
for cmd in config.commands.keys.sorted() { | |
try config.run(cmd: cmd, verbose: verbose) | |
} |
Could this be done in parallel threads as an easy way to speed up SwiftGen with multiple commands? Any gotchas if we decide to implement it?