Skip to content

Commit 5a9c12f

Browse files
committed
Build: repair the build after swiftlang/swift-driver#144
swiftlang/swift-driver#144 introduced a new case in the `VirtualPath` type, resulting in the switch no longer being exhaustive. Abort if this is encountered until it can be handled properly.
1 parent 73609f9 commit 5a9c12f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Sources/Build/ManifestBuilder.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,9 @@ extension TypedVirtualPath {
864864

865865
case .standardInput, .standardOutput:
866866
fatalError("Cannot handle standard input or output")
867+
868+
case .fileList:
869+
fatalError("cannot handle fileList")
867870
}
868871
}
869872
}

0 commit comments

Comments
 (0)