Skip to content

Commit 1c2632d

Browse files
committed
fix: CSC_INSTALLER_LINK environment variable isn't picked up #560
1 parent 233fafe commit 1c2632d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/builder.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ export async function build(rawOptions?: CliOptions): Promise<void> {
193193
if (options.cscLink === undefined && !isEmptyOrSpaces(process.env.CSC_LINK)) {
194194
options.cscLink = process.env.CSC_LINK
195195
}
196+
if (options.cscInstallerLink === undefined && !isEmptyOrSpaces(process.env.CSC_INSTALLER_LINK)) {
197+
options.cscInstallerLink = process.env.CSC_INSTALLER_LINK
198+
}
196199
if (options.cscKeyPassword === undefined && !isEmptyOrSpaces(process.env.CSC_KEY_PASSWORD)) {
197200
options.cscKeyPassword = process.env.CSC_KEY_PASSWORD
198201
}

0 commit comments

Comments
 (0)