diff --git a/commands/config.js b/commands/config.js index cab5e5a..b745715 100644 --- a/commands/config.js +++ b/commands/config.js @@ -26,7 +26,10 @@ function done() { */ function command(argv) { - di.fs.copy(di.path.join(ROOT_PATH, 'config.yml'), 'config.yml', done); + // Copy the default config file + di.fs.copySync(di.path.join(ROOT_PATH, 'config.yml'), 'config.yml'); + + done(); }