Skip to content

Commit

Permalink
[config] Move readYamlConfig to snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Dec 10, 2015
1 parent ea23878 commit 9a4ae74
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/plugin/pluginInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var fromRoot = utils('fromRoot');
var pluginDownloader = require('./pluginDownloader');
var pluginCleaner = require('./pluginCleaner');
var KbnServer = require('../../server/KbnServer');
var readYamlConfig = require('../serve/readYamlConfig');
var readYamlConfig = require('../serve/read_yaml_config');
var fs = require('fs');

module.exports = {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cli/serve/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = function (program) {
return;
}

let readYamlConfig = require('./readYamlConfig');
let readYamlConfig = require('./read_yaml_config');
let KbnServer = src('server/KbnServer');

let settings = readYamlConfig(opts.config);
Expand Down

0 comments on commit 9a4ae74

Please sign in to comment.