Skip to content

Commit

Permalink
Improve init project picking language.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbleigh committed Apr 7, 2017
1 parent 36ca448 commit 4570d52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module.exports = new Command('init [feature]')
return prompt(setup, [{
type: 'checkbox',
name: 'features',
message: 'What Firebase CLI features do you want to setup for this folder?',
message: 'What Firebase CLI features do you want to setup for this directory?',
choices: prompt.convertLabeledListChoices(choices)
}]);
}).then(function() {
Expand Down
2 changes: 1 addition & 1 deletion lib/init/features/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = function(setup, config) {
return prompt.once({
type: 'list',
name: 'id',
message: 'What Firebase project do you want to associate as default?',
message: 'Select a default Firebase project for this directory:',
validate: function(answer) {
if (!_.includes(nameOptions, answer)) {
return 'Must specify a Firebase to which you have access.';
Expand Down

0 comments on commit 4570d52

Please sign in to comment.