Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id ED3A017619 for ; Tue, 20 Jan 2015 03:04:20 +0000 (UTC) Received: (qmail 17106 invoked by uid 500); 20 Jan 2015 03:04:23 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 16984 invoked by uid 500); 20 Jan 2015 03:04:23 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 16942 invoked by uid 99); 20 Jan 2015 03:04:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jan 2015 03:04:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DF3E9E03BC; Tue, 20 Jan 2015 03:04:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org Date: Tue, 20 Jan 2015 03:04:23 -0000 Message-Id: <17c16cea6b3146428e5337e2cb01ea81@git.apache.org> In-Reply-To: <8231dd453fbd4d3cbaaa8f6576375f5a@git.apache.org> References: <8231dd453fbd4d3cbaaa8f6576375f5a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/8] android commit: Fix exception for unknown flag in `cordova/run` Fix exception for unknown flag in `cordova/run` Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/d30a5e03 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/d30a5e03 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/d30a5e03 Branch: refs/heads/4.0.x Commit: d30a5e03883b0cb3dbe620b252148ef43856bd85 Parents: fcece7e Author: Andrew Grieve Authored: Mon Jan 19 21:50:14 2015 -0500 Committer: Andrew Grieve Committed: Mon Jan 19 21:50:14 2015 -0500 ---------------------------------------------------------------------- bin/templates/cordova/lib/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/d30a5e03/bin/templates/cordova/lib/run.js ---------------------------------------------------------------------- diff --git a/bin/templates/cordova/lib/run.js b/bin/templates/cordova/lib/run.js index df8996d..ced23a0 100644 --- a/bin/templates/cordova/lib/run.js +++ b/bin/templates/cordova/lib/run.js @@ -50,7 +50,7 @@ var path = require('path'), } else if (args[i] == '--list') { list = true; } else { - console.warn('Option \'' + options[i] + '\' not recognized (ignoring).'); + console.warn('Option \'' + args[i] + '\' not recognized (ignoring).'); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org