Skip to content

Commit

Permalink
fix: CSC_INSTALLER_LINK environment variable isn't picked up #560
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Jul 3, 2016
1 parent 233fafe commit 1c2632d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ export async function build(rawOptions?: CliOptions): Promise<void> {
if (options.cscLink === undefined && !isEmptyOrSpaces(process.env.CSC_LINK)) {
options.cscLink = process.env.CSC_LINK
}
if (options.cscInstallerLink === undefined && !isEmptyOrSpaces(process.env.CSC_INSTALLER_LINK)) {
options.cscInstallerLink = process.env.CSC_INSTALLER_LINK
}
if (options.cscKeyPassword === undefined && !isEmptyOrSpaces(process.env.CSC_KEY_PASSWORD)) {
options.cscKeyPassword = process.env.CSC_KEY_PASSWORD
}
Expand Down

0 comments on commit 1c2632d

Please sign in to comment.