From c8a9ac60487ba01cbe03ccdefac73e1bea464b2e Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Mon, 24 Sep 2018 17:38:52 -0500 Subject: [PATCH] tweak log messages --- lib/utils/template_generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/template_generator.js b/lib/utils/template_generator.js index b603c308..a3d5287d 100644 --- a/lib/utils/template_generator.js +++ b/lib/utils/template_generator.js @@ -21,6 +21,7 @@ class TemplateGenerator { let {url, filePath, browse} = this.getExternalProject(uri); let tmpFilePath = fs.tmpDir(filePath); console.log(__('Installing template from ' + browse).green); + console.log(__('Downloading template...').green); fs.mkdirpSync(utils.dirname(tmpFilePath)); utils.downloadFile(url, tmpFilePath, (err) => { @@ -46,8 +47,7 @@ class TemplateGenerator { generate(destinationFolder, name) { const fspath = utils.joinPath(destinationFolder, name); this.checkPathExists(fspath); - console.log(__('Initializing Embark Template...').green); - + console.log(__('Initializing Embark template...').green); let templatePath = fs.embarkPath(utils.joinPath('templates', this.templateName)); fs.copySync(templatePath, fspath);