From b11188646b2af369ad09f4e97b81f9fa4d50466c Mon Sep 17 00:00:00 2001 From: Ivan Komissarov Date: Mon, 5 Apr 2021 16:39:28 +0200 Subject: Avoid using unicode characters in apple.qbs Some editors struggle with them Change-Id: I61672b6ca83facd7a2b2bf2fa763245aee94bce5 Reviewed-by: Denis Shienkov Reviewed-by: Christian Kandeler --- share/qbs/modules/codesign/apple.qbs | 14 +++++++------- 1 file 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."); } } } -- cgit v1.2.3