Skip to content

Commit 921673f

Browse files
committed
request rejectUnauthorized
1 parent dcde1b4 commit 921673f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/ionic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ Ionic = {
598598

599599
var proxy = process.env.PROXY || null;
600600
var request = require('request');
601-
request({ url: archiveUrl, encoding: null, proxy: proxy }, function(err, res, body) {
601+
request({ url: archiveUrl, rejectUnauthorized: false, encoding: null, proxy: proxy }, function(err, res, body) {
602602
if(err) {
603603
console.error('Error fetching:'.error.bold, archiveUrl, err);
604604
q.reject(err);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic",
3-
"version": "1.2.5-beta2",
3+
"version": "1.2.5-beta3",
44
"preferGlobal": true,
55
"description": "A tool for creating and developing Ionic Framework mobile apps.",
66
"homepage": "http://ionicframework.com/",

0 commit comments

Comments
 (0)