Commit 57127a36 authored by indexzero's avatar indexzero

[fix] Fix typo in bin/node-http-proxy

parent ac425d70
...@@ -43,9 +43,9 @@ if (argv.config) { ...@@ -43,9 +43,9 @@ if (argv.config) {
// //
// If `config.https` is set, then load those files into the config options. // If `config.https` is set, then load those files into the config options.
// //
if (options.config) { if (config.https) {
Object.keys(options.config).forEach(function (key) { Object.keys(config.https).forEach(function (key) {
options.config[key] = fs.readFileSync(options.config[key], 'utf8'); config.https[key] = fs.readFileSync(config.https[key], 'utf8');
}); });
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment