From d2164732fee19b28018bf3a39c799be3c72bd8f7 Mon Sep 17 00:00:00 2001 From: Tom Candia Date: Thu, 16 Jan 2020 06:38:35 -0300 Subject: [PATCH] fix(mac): identifier missing from pkgbuild (#4558) --- packages/app-builder-lib/src/targets/pkg.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app-builder-lib/src/targets/pkg.ts b/packages/app-builder-lib/src/targets/pkg.ts index d29d9b556e..6e5838b91d 100644 --- a/packages/app-builder-lib/src/targets/pkg.ts +++ b/packages/app-builder-lib/src/targets/pkg.ts @@ -167,6 +167,7 @@ export class PkgTarget extends Target { // now build the package const args = [ "--root", rootPath, + "--identifier", this.packager.appInfo.id, "--component-plist", propertyListOutputFile, ]