Skip to content

Commit

Permalink
fix(maker): do not enforce the name property on the DMG maker
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Apr 24, 2017
1 parent 54f15d6 commit 1b10fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/makers/darwin/dmg.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export default async (dir, appName, targetArch, forgeConfig, packageJSON) => { /
await ensureFile(outPath);
const dmgConfig = Object.assign({
overwrite: true,
name: appName,
}, configFn(forgeConfig.electronInstallerDMG, targetArch), {
appPath: path.resolve(dir, `${appName}.app`),
name: appName,
out: path.dirname(outPath),
});
await pify(electronDMG)(dmgConfig);
Expand Down

0 comments on commit 1b10fd5

Please sign in to comment.