Skip to content

Commit

Permalink
Remove extra .dmg
Browse files Browse the repository at this point in the history
  • Loading branch information
macdja38 committed May 16, 2024
1 parent 9e5bef2 commit 852d520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/maker/dmg/src/MakerDMG.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class MakerDMG extends MakerBase<MakerDMGConfig> {
async make({ dir, makeDir, appName, packageJSON, targetArch }: MakerOptions): Promise<string[]> {
const electronDMG = require('electron-installer-dmg');

const dmgOutName = this.config.name ?? `${appName}-${packageJSON.version}-${targetArch}.dmg`;
const dmgOutName = this.config.name ?? `${appName}-${packageJSON.version}-${targetArch}`;
const outPath = path.resolve(makeDir, dmgOutName);

await this.ensureFile(outPath);
Expand Down

0 comments on commit 852d520

Please sign in to comment.