Skip to content

Commit

Permalink
fix: electron-builder uploads null.blockmap file
Browse files Browse the repository at this point in the history
Close #2312
  • Loading branch information
develar committed Feb 8, 2018
1 parent 9d6eb96 commit 2a2d832
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function createBlockmap(file: string, target: Target, packager: Pla
const updateInfo: BlockMapDataHolder = JSON.parse(await exec(appBuilderPath, ["blockmap", "--input", file, "--output", blockMapFile]))
packager.info.dispatchArtifactCreated({
file: blockMapFile,
safeArtifactName: `${safeArtifactName}${BLOCK_MAP_FILE_SUFFIX}`,
safeArtifactName: safeArtifactName == null ? null : `${safeArtifactName}${BLOCK_MAP_FILE_SUFFIX}`,
target,
arch: null,
packager,
Expand Down

0 comments on commit 2a2d832

Please sign in to comment.