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 38e7165 commit 0704091Copy full SHA for 0704091
Sources/SwiftSDKGenerator/Artifacts/DownloadableArtifacts.swift
@@ -44,7 +44,11 @@ struct DownloadableArtifacts: Sendable {
44
case let .unsupportedHostTriple(hostTriple):
45
"unsupported host triple \(hostTriple)"
46
case let .unsupportedHostTriples(hostTriples):
47
- "unsupported host triples \(hostTriples.map { "\($0)" }.joined(separator: ", ")) (only macOS supports multiple host triples)"
+ """
48
+ unsupported host triples \(
49
+ hostTriples.map { "\($0)" }.joined(separator: ", ")
50
+ ) (only macOS supports multiple host triples)
51
52
}
53
54
0 commit comments