From c96090c0f7cc24209b34f9634699e68669650070 Mon Sep 17 00:00:00 2001 From: Craig Date: Mon, 22 Aug 2016 17:31:14 -0700 Subject: [PATCH] fix(update): download standalone with proxy and ignore ssl (#81) closes #79 --- lib/cmds/update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmds/update.ts b/lib/cmds/update.ts index 9f599a1c..c26db912 100644 --- a/lib/cmds/update.ts +++ b/lib/cmds/update.ts @@ -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 ' +