We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f1f0b commit e4b0829Copy full SHA for e4b0829
src/vite/index.ts
@@ -463,8 +463,8 @@ export async function electronWithUpdater(
463
...electronPluginOptions,
464
updater: { buildAsarOption, buildEntryOption, buildVersionOption },
465
},
466
- (key, value) => ((key === 'privateKey' || key === 'cert') && shouldShowKey)
467
- ? `<${key.toUpperCase()}>`
+ (key, value) => (key === 'privateKey' || key === 'cert')
+ ? shouldShowKey ? value : `<${key.toUpperCase()}>`
468
: value,
469
2,
470
),
0 commit comments