Skip to content

Commit fd63ac6

Browse files
committed
TSCBasic: repair the Windows build after swiftlang/swift-package-manager#2925
The `ProcessResult.Error` conformance to `CustomStringConvertible` was ignored on the Windows target accidentally. Adjust this to repair the build.
1 parent f81e902 commit fd63ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/TSCBasic/Process.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,7 @@ extension Process.Error: CustomStringConvertible {
748748
}
749749
}
750750
}
751+
#endif
751752

752753
extension ProcessResult.Error: CustomStringConvertible {
753754
public var description: String {
@@ -787,4 +788,3 @@ extension ProcessResult.Error: CustomStringConvertible {
787788
}
788789
}
789790
}
790-
#endif

0 commit comments

Comments
 (0)