diff --git a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift index 4613a77b728..bfdc2faf14d 100644 --- a/Sources/SwiftBuildSupport/SwiftBuildSystem.swift +++ b/Sources/SwiftBuildSupport/SwiftBuildSystem.swift @@ -52,7 +52,14 @@ func withSession( _ diagnostics: [SwiftBuild.SwiftBuildMessage.DiagnosticInfo] ) async throws -> Void ) async throws { - switch await service.createSession(name: name, resourceSearchPaths: packageManagerResourcesDirectory.map { [$0.pathString] } ?? [], cachePath: nil, inferiorProductsPath: nil, environment: nil) { + switch await service.createSession( + name: name, + developerPath: nil, + resourceSearchPaths: packageManagerResourcesDirectory.map { [$0.pathString] } ?? [], + cachePath: nil, + inferiorProductsPath: nil, + environment: nil + ) { case (.success(let session), let diagnostics): do { try await body(session, diagnostics)