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