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 59303d2 commit 146eafcCopy full SHA for 146eafc
Sources/AppStoreConnectCLI/Services/Operations/ReadBundleIdOperation.swift
@@ -17,9 +17,9 @@ struct ReadBundleIdOperation: APIOperation {
17
var errorDescription: String? {
18
switch self {
19
case .couldNotFindBundleId(let bundleId):
20
- return "Couldn't find bundleId: '\(bundleId)'."
21
- case .bundleIdNotUnique(let serial):
22
- return "The bundleId your provided '\(serial)' is not unique."
+ return "Couldn't find Bundle ID: '\(bundleId)'."
+ case .bundleIdNotUnique(let bundleId):
+ return "The Bundle ID you provided '\(bundleId)' is not unique."
23
}
24
25
0 commit comments