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 D613B1763B for ; Tue, 20 Jan 2015 03:05:57 +0000 (UTC) Received: (qmail 21684 invoked by uid 500); 20 Jan 2015 03:06:00 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 21568 invoked by uid 500); 20 Jan 2015 03:05:59 -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 21501 invoked by uid 99); 20 Jan 2015 03:05:59 -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:05:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A013DE03BC; Tue, 20 Jan 2015 03:05:59 +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:06:00 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/7] 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/73751542 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/73751542 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/73751542 Branch: refs/heads/3.7.x Commit: 7375154228f96671fc3af9df2f7ad80c08518103 Parents: 1427c13 Author: Andrew Grieve Authored: Mon Jan 19 21:50:14 2015 -0500 Committer: Andrew Grieve Committed: Mon Jan 19 22:05:21 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/73751542/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