From dedf0f83fddc19203fcd0fa5ba222fc28fed1267 Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Thu, 11 Sep 2014 16:18:33 -0700 Subject: [PATCH] Since (Y) is the default choice, make (n) lowercase --- tools/commands-cordova.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 8acfa52541..1740462ec1 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -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