From c08db0a92b5e251229a424c1c00559086d860dde Mon Sep 17 00:00:00 2001 From: Michael Barry <53351420+michaelwbarry@users.noreply.github.com> Date: Fri, 6 Jan 2023 18:06:00 -0600 Subject: [PATCH] fix: re-add `--identifier` to mac pkg build to address issue #7348 (#7352) --- .changeset/wet-kangaroos-fail.md | 5 +++++ packages/app-builder-lib/src/targets/pkg.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/wet-kangaroos-fail.md diff --git a/.changeset/wet-kangaroos-fail.md b/.changeset/wet-kangaroos-fail.md new file mode 100644 index 00000000000..61490c41ce0 --- /dev/null +++ b/.changeset/wet-kangaroos-fail.md @@ -0,0 +1,5 @@ +--- +"app-builder-lib": patch +--- + +fix: re-add `--identifier` to mac pkg build to address issue #7348 diff --git a/packages/app-builder-lib/src/targets/pkg.ts b/packages/app-builder-lib/src/targets/pkg.ts index ffc991b09cf..14b44aea064 100644 --- a/packages/app-builder-lib/src/targets/pkg.ts +++ b/packages/app-builder-lib/src/targets/pkg.ts @@ -172,7 +172,7 @@ export class PkgTarget extends Target { const args = [ "--root", rootPath, - // "--identifier", this.packager.appInfo.id, + "--identifier", this.packager.appInfo.id, "--component-plist", propertyListOutputFile, ]