Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao committed Oct 13, 2022
1 parent 18b8327 commit b7741f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/maker/pkg/src/MakerPKG.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import MakerBase, { MakerOptions } from '@electron-forge/maker-base';
import { ForgePlatform } from '@electron-forge/shared-types';
import { buildPkg } from '@electron/osx-sign';
import { flatAsync } from '@electron/osx-sign';

import path from 'path';
import { MakerPKGConfig } from './Config';
Expand Down Expand Up @@ -29,7 +29,7 @@ export default class MakerPKG extends MakerBase<MakerPKGConfig> {
pkg: outPath,
platform: targetPlatform,
};
await buildPkg(pkgConfig);
await flatAsync(pkgConfig);

return [outPath];
}
Expand Down

0 comments on commit b7741f1

Please sign in to comment.