Skip to content

Commit

Permalink
remove .app from plist names
Browse files Browse the repository at this point in the history
  • Loading branch information
sysrage committed Aug 24, 2024
1 parent d70f415 commit 5fd8d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bld/osx.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default async function setOsxConfig({ app, outDir, releaseInfo }) {
await rename(oldSubPath, newSubPath);

// Update Helper Plist file
await updateHelperPlist(newPath, newHelperAppName, helperApp.id, app.CFBundleIdentifier);
await updateHelperPlist(newPath, newHelperAppName.replace(/.app$/, ''), helperApp.id, app.CFBundleIdentifier);
}

/* Replace default icon with user defined icon if specified. */
Expand Down

0 comments on commit 5fd8d3b

Please sign in to comment.