From d2ce3bea26e9cf5a9bd04298e593d7a98fc0064b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sp=C3=ABnzor?= Date: Mon, 16 Jul 2018 15:37:01 -0700 Subject: [PATCH] feat: add clarity to CLI prompt for where repository is hosted (#103) Users, including myself, have put the wrong link in answer to "Where is the repository hosted?" --- src/init/prompt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/prompt.js b/src/init/prompt.js index 81dcdd1..35fb723 100644 --- a/src/init/prompt.js +++ b/src/init/prompt.js @@ -32,7 +32,7 @@ const questions = [ { type: 'input', name: 'repoHost', - message: 'Where is the repository hosted?', + message: 'Where is the repository hosted? Hit Enter if it\'s on GitHub or GitLab', default: function(answers) { if (answers.repoType === 'github') { return 'https://github.com'