mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Since (Y) is the default choice, make (n) lowercase
This commit is contained in:
@@ -885,11 +885,11 @@ var checkAgreePlatformTerms = function (platform) {
|
||||
process.stdout.write("The following terms apply to the '" + platform + "' platform:\n\n");
|
||||
process.stdout.write(terms + "\n\n");
|
||||
process.stdout.write("You must agree to the terms to proceed.\n");
|
||||
process.stdout.write("Do you agree (Y/N)? ");
|
||||
process.stdout.write("Do you agree (Y/n)? ");
|
||||
|
||||
var agreed = false;
|
||||
|
||||
var line = utils.readLine({ prompt: "Do you agree (Y/N)? "});
|
||||
var line = utils.readLine({ prompt: "Do you agree (Y/n)? "});
|
||||
line = line.trim().toLowerCase();
|
||||
if (line === "") {
|
||||
// Default to yes
|
||||
|
||||
Reference in New Issue
Block a user