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 233fafe commit 1c2632dCopy full SHA for 1c2632d
src/builder.ts
@@ -193,6 +193,9 @@ export async function build(rawOptions?: CliOptions): Promise<void> {
193
if (options.cscLink === undefined && !isEmptyOrSpaces(process.env.CSC_LINK)) {
194
options.cscLink = process.env.CSC_LINK
195
}
196
+ if (options.cscInstallerLink === undefined && !isEmptyOrSpaces(process.env.CSC_INSTALLER_LINK)) {
197
+ options.cscInstallerLink = process.env.CSC_INSTALLER_LINK
198
+ }
199
if (options.cscKeyPassword === undefined && !isEmptyOrSpaces(process.env.CSC_KEY_PASSWORD)) {
200
options.cscKeyPassword = process.env.CSC_KEY_PASSWORD
201
0 commit comments