Commit 74cf7cee3ad543f1da19d8c6e80d88fac72a51ba

Authored by Adhidarma Hadiwinoto
1 parent e621d8fe70
Exists in master

refactor

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -10,7 +10,7 @@ function replace(new_config) {
10 10 }
11 11  
12 12 _removeIfNotExists(new_config);
13   - configFiller.do();
  13 + configFiller.go();
14 14 }
15 15  
16 16 function reload() {
... ... @@ -13,6 +13,6 @@ if (!fs.existsSync(configFile)) {
13 13 }
14 14  
15 15 const config = require(configFile);
16   -configFiller.do();
  16 +configFiller.go();
17 17  
18 18 module.exports = config;