This commit is contained in:
Mazen El-Kashef 2020-02-27 13:06:23 -05:00
parent f658e69285
commit 3a022d6ec1
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ module.exports = async function(packagedAppPath) {
await osxSign.signAsync({
app: packagedAppPath,
entitlements: macEntitlementsPath,
"entitlements-inherit": macEntitlementsPath,
'entitlements-inherit': macEntitlementsPath,
identity: 'Developer ID Application: GitHub',
keychain: process.env.ATOM_MAC_CODE_SIGNING_KEYCHAIN,
platform: 'darwin',

View File

@ -13,6 +13,6 @@ module.exports = async function(packagedAppPath) {
appleIdPassword: appleIdPassword
});
} catch (e) {
//throw new Error(e);
// throw new Error(e);
}
};