@@ -85,8 +85,8 @@ public struct SwiftSDKBundle {
85
85
guard let destinationsDirectory else {
86
86
throw StringError (
87
87
"""
88
- No cross-compilation destinations directory found, specify one
89
- with `experimental-destinations -path` option.
88
+ No directory found for installed Swift SDKs , specify one
89
+ with `-- experimental-swift-sdks -path` option.
90
90
"""
91
91
)
92
92
}
@@ -99,7 +99,7 @@ public struct SwiftSDKBundle {
99
99
100
100
guard !validBundles. isEmpty else {
101
101
throw StringError (
102
- " No valid cross-compilation destination bundles found at \( destinationsDirectory) . "
102
+ " No valid Swift SDK bundles found at \( destinationsDirectory) . "
103
103
)
104
104
}
105
105
@@ -110,8 +110,8 @@ public struct SwiftSDKBundle {
110
110
) else {
111
111
throw StringError (
112
112
"""
113
- No cross-compilation destination found matching query ` \( selector) ` and host triple
114
- ` \( hostTriple. tripleString) `. Use `swift package experimental-destination list` command to see
113
+ No Swift SDK found matching query ` \( selector) ` and host triple
114
+ ` \( hostTriple. tripleString) `. Use `swift experimental-sdk list` command to see
115
115
available destinations.
116
116
"""
117
117
)
@@ -167,7 +167,7 @@ public struct SwiftSDKBundle {
167
167
168
168
bundlePath = downloadedBundlePath
169
169
170
- print ( " Destination artifact bundle successfully downloaded from `\( bundleURL) `. " )
170
+ print ( " Swift SDK bundle successfully downloaded from `\( bundleURL) `. " )
171
171
} else if
172
172
let cwd: AbsolutePath = fileSystem. currentWorkingDirectory,
173
173
let originalBundlePath = try ? AbsolutePath ( validating: bundlePathOrURL, relativeTo: cwd)
@@ -187,7 +187,7 @@ public struct SwiftSDKBundle {
187
187
)
188
188
}
189
189
190
- print ( " Destination artifact bundle at `\( bundlePathOrURL) ` successfully installed. " )
190
+ print ( " Swift SDK bundle at `\( bundlePathOrURL) ` successfully installed. " )
191
191
}
192
192
193
193
/// Unpacks a destination bundle if it has an archive extension in its filename.
@@ -458,7 +458,7 @@ extension [SwiftSDKBundle] {
458
458
observabilityScope. emit (
459
459
warning:
460
460
"""
461
- multiple destinations match target triple ` \( selector) ` and host triple \(
461
+ multiple Swift SDKs match target triple ` \( selector) ` and host triple \(
462
462
hostTriple. tripleString
463
463
) , selected one at \(
464
464
matchedByTriple. path. appending ( matchedByTriple. variant. metadata. path)
@@ -478,7 +478,7 @@ extension [SwiftSDKBundle] {
478
478
observabilityScope. emit (
479
479
warning:
480
480
"""
481
- multiple destinations match the query ` \( selector) ` and host triple \(
481
+ multiple Swift SDKs match the query ` \( selector) ` and host triple \(
482
482
hostTriple. tripleString
483
483
) , selected one at \( matchedByID. path. appending ( matchedByID. variant. metadata. path) )
484
484
"""
0 commit comments