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.
2 parents 9cc8431 + 041a064 commit 40a54f8Copy full SHA for 40a54f8
Sources/SwiftDriver/Jobs/Planning.swift
@@ -197,10 +197,11 @@ extension Driver {
197
throws {
198
// If asked, add jobs to precompile module dependencies
199
guard parsedOptions.contains(.driverExplicitModuleBuild) else { return }
200
- guard let dependencyGraph else {
+ guard let resolvedDependencyGraph = dependencyGraph else {
201
fatalError("Attempting to plan explicit dependency build without a dependency graph")
202
}
203
- let modulePrebuildJobs = try generateExplicitModuleDependenciesJobs(dependencyGraph: dependencyGraph)
+ let modulePrebuildJobs =
204
+ try generateExplicitModuleDependenciesJobs(dependencyGraph: resolvedDependencyGraph)
205
modulePrebuildJobs.forEach(addJob)
206
207
0 commit comments