From 343f502bae330e29d5cf345eb43927ba4c043eed Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 27 Sep 2019 12:06:52 -0400 Subject: [PATCH] fix build resources dir --- scripts/after-sign.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/after-sign.js b/scripts/after-sign.js index ddf49c06..8867e2ae 100644 --- a/scripts/after-sign.js +++ b/scripts/after-sign.js @@ -14,7 +14,7 @@ async function run(context) { if (masBuild || macBuild) { console.log('### Signing Safari App Extension Libs'); - const resourcesPath = context.packager.MacPackager.info.Packager._buildResourcesDir; + const resourcesPath = context.packager.info._buildResourcesDir; const devId = masBuild ? '3rd Party Mac Developer Application: 8bit Solutions LLC' : 'Developer ID Application: 8bit Solutions LLC'; await signSafariAppLibs(appPath, resourcesPath, devId);