aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2021-04-05 16:39:28 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2021-04-06 14:11:22 +0000
commitb11188646b2af369ad09f4e97b81f9fa4d50466c (patch)
treefade7ecc65fa6bb7c3e8ef195788f00bafce1f65
parent44ef034472337abdb894f76f593da6648f9782d5 (diff)
Avoid using unicode characters in apple.qbs
Some editors struggle with them Change-Id: I61672b6ca83facd7a2b2bf2fa763245aee94bce5 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/modules/codesign/apple.qbs14
1 files changed, 7 insertions, 7 deletions
diff --git a/share/qbs/modules/codesign/apple.qbs b/share/qbs/modules/codesign/apple.qbs
index 06f07d72d..31e2c366d 100644
--- a/share/qbs/modules/codesign/apple.qbs
+++ b/share/qbs/modules/codesign/apple.qbs
@@ -125,7 +125,7 @@ CodeSignModule {
var identities = CodeSign.findSigningIdentities(signingIdentity, teamIdentifier);
if (identities && Object.keys(identities).length > 1) {
throw "Multiple codesigning identities (i.e. certificate and private key pairs) " +
- "matching “" + signingIdentity + "” were found." +
+ "matching '" + signingIdentity + "' were found." +
CodeSign.humanReadableIdentitySummary(identities);
}
@@ -240,17 +240,17 @@ CodeSignModule {
}
});
} else if (uuid) {
- throw "Your build settings specify a provisioning profile with the UUID “"
- + uuid + "”, however, no such provisioning profile was found.";
+ throw "Your build settings specify a provisioning profile with the UUID '"
+ + uuid + "', however, no such provisioning profile was found.";
} else if (product._provisioningProfileRequired) {
var hasProfiles = !!((inputs["codesign.provisioningprofile"] || []).length);
var teamIdentifier = product.teamIdentifier;
var codeSignIdentity = product.signingIdentity;
if (hasProfiles) {
if (codeSignIdentity) {
- console.warn("No provisioning profiles matching the bundle identifier “"
+ console.warn("No provisioning profiles matching the bundle identifier '"
+ product.bundle.identifier
- + "” were found.");
+ + "' were found.");
} else {
console.warn("No provisioning profiles matching an applicable signing "
+ "identity were found.");
@@ -260,13 +260,13 @@ CodeSignModule {
if (teamIdentifier) {
console.warn("No provisioning profiles with a valid signing identity "
+ "(i.e. certificate and private key pair) matching the "
- + "team ID “" + teamIdentifier + "” were found.")
+ + "team ID '" + teamIdentifier + "' were found.")
} else {
console.warn("No provisioning profiles with a valid signing identity "
+ "(i.e. certificate and private key pair) were found.");
}
} else {
- console.warn("No non–expired provisioning profiles were found.");
+ console.warn("No non-expired provisioning profiles were found.");
}
}
}