Skip to content

Commit

Permalink
fix(nsis): broken nsis
Browse files Browse the repository at this point in the history
Closes #800
  • Loading branch information
develar committed Oct 7, 2016
1 parent 36ca0a8 commit 993dac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/targets/nsis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class NsisTarget extends Target {
const packager = this.packager
const archSuffix = Arch[arch]
const archiveFile = path.join(this.outDir, `${packager.appInfo.name}-${packager.appInfo.version}-${archSuffix}.nsis.7z`)
this.archs.set(arch, task(`Creating NSIS ${archSuffix} package`, archiveApp(packager.devMetadata.build.compression, "7z", archiveFile, appOutDir, true)))
this.archs.set(arch, task(`Creating NSIS ${archSuffix} package`, archiveApp(packager.devMetadata.build.compression, "7z", archiveFile, appOutDir, false, true)))
}

finishBuild(): Promise<any> {
Expand Down

0 comments on commit 993dac7

Please sign in to comment.