Skip to content

Commit

Permalink
fix(update): download standalone with proxy and ignore ssl (#81)
Browse files Browse the repository at this point in the history
closes #79
  • Loading branch information
cnishina authored Aug 23, 2016
1 parent ffb0581 commit c96090c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cmds/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function update(options: Options): void {
let binary = binaries[StandAlone.id];
FileManager.toDownload(binary, outputDir).then((value: boolean) => {
if (value) {
Downloader.downloadBinary(binary, outputDir);
Downloader.downloadBinary(binary, outputDir, proxy, ignoreSSL);
} else {
logger.info(
binary.name + ': file exists ' +
Expand Down

0 comments on commit c96090c

Please sign in to comment.