We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb10afb commit aea6505Copy full SHA for aea6505
src/winPackager.ts
@@ -26,7 +26,7 @@ export class WinPackager extends PlatformPackager<WinBuildOptions> {
26
27
const certificateFile = this.customBuildOptions.certificateFile
28
if (certificateFile != null) {
29
- const certificatePassword = this.customBuildOptions.certificatePassword
+ const certificatePassword = this.customBuildOptions.certificatePassword || this.getCscPassword()
30
this.cscInfo = BluebirdPromise.resolve({
31
file: certificateFile,
32
password: certificatePassword == null ? null : certificatePassword.trim(),
0 commit comments