Skip to content

Commit efde1c6

Browse files
authored
Add missing self in SwiftBuildSystem (#8368)
#8366 is a revert, but it reverted back to a point before there was an outer `withService` block wrapping the code. As a result a `self` is missing on `buildParameters`, causing a build failure.
1 parent 6a2e45f commit efde1c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Sources/SwiftBuildSupport/SwiftBuildSystem.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public final class SwiftBuildSystem: SPMBuildCore.BuildSystem {
257257
)
258258

259259
do {
260-
try await withSession(service: service, name: buildParameters.pifManifest.pathString) { session, _ in
260+
try await withSession(service: service, name: self.buildParameters.pifManifest.pathString) { session, _ in
261261
// Load the workspace, and set the system information to the default
262262
do {
263263
try await session.loadWorkspace(containerPath: self.buildParameters.pifManifest.pathString)

0 commit comments

Comments
 (0)