From b9e592ae2e8bd948cc8f7022341660b2849d63cd Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Thu, 11 Oct 2018 12:17:27 -0500 Subject: [PATCH] color retry message yellow --- lib/utils/template_generator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/template_generator.js b/lib/utils/template_generator.js index 906f4ca9f..8808486e4 100644 --- a/lib/utils/template_generator.js +++ b/lib/utils/template_generator.js @@ -56,7 +56,7 @@ class TemplateGenerator { } catch (err) { let {url_fallback, filePath_fallback, browse_fallback} = ext; if (url_fallback) { - console.log(__('Retrying with the master branch...').green); + console.log(__('Retrying with the master branch...').yellow); tmpFilePath = fs.tmpDir(filePath_fallback); await this.download(url_fallback, tmpFilePath, browse_fallback); } else {