From c5afe46e6f6e6b9779da4147f8052eb4ab909d4e Mon Sep 17 00:00:00 2001 From: Tauren Mills Date: Mon, 18 Aug 2014 17:30:42 -0700 Subject: [PATCH] Proxy config is not passed to enpoints --- lib/package.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/package.js b/lib/package.js index 900c1d489..30f81b4ce 100644 --- a/lib/package.js +++ b/lib/package.js @@ -71,7 +71,7 @@ exports.loadEndpoint = function(endpoint) { tmpDir: tmpDir, https: _pkg.https }; - extend(options, config.globalConfig[endpoint] || {}, config.globalConfig.proxy || {}); + extend(options, config.globalConfig[endpoint] || {}); var endpointClass = require(config.globalConfig.endpoint && config.globalConfig.endpoint[endpoint]);