Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Jan 16, 2020
1 parent 5efafa8 commit d4feb6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/electron-builder/src/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ export function normalizeOptions(args: CliOptions): BuildOptions {

// fix Boolean type by coerceTypes
if (config.nsis != null) {
coerceTypes(config.nsis);
coerceTypes(config.nsis)
}
if (config.nsisWeb != null) {
coerceTypes(config.nsisWeb);
coerceTypes(config.nsisWeb)
}
}

Expand Down

0 comments on commit d4feb6d

Please sign in to comment.