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 579B510FBF for ; Wed, 4 Jun 2014 23:24:42 +0000 (UTC) Received: (qmail 48394 invoked by uid 500); 4 Jun 2014 23:24:41 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 48366 invoked by uid 500); 4 Jun 2014 23:24:41 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 48359 invoked by uid 99); 4 Jun 2014 23:24:41 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jun 2014 23:24:41 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D46F393FFC7; Wed, 4 Jun 2014 23:24:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: marcelk@apache.org To: commits@cordova.apache.org Message-Id: <90086a9f54154672bff0b7756631b4f5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: android commit: CB-6876 Show the correct executable name Date: Wed, 4 Jun 2014 23:24:40 +0000 (UTC) Repository: cordova-android Updated Branches: refs/heads/master d427c52aa -> 32e07c22d CB-6876 Show the correct executable name Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/32e07c22 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/32e07c22 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/32e07c22 Branch: refs/heads/master Commit: 32e07c22d07ae659d1ba9092effae73395824ab4 Parents: d427c52 Author: Marcel Kinard Authored: Wed Jun 4 19:23:43 2014 -0400 Committer: Marcel Kinard Committed: Wed Jun 4 19:23:43 2014 -0400 ---------------------------------------------------------------------- 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/32e07c22/bin/templates/cordova/lib/run.js ---------------------------------------------------------------------- diff --git a/bin/templates/cordova/lib/run.js b/bin/templates/cordova/lib/run.js index be7f5a2..da8fc60 100644 --- a/bin/templates/cordova/lib/run.js +++ b/bin/templates/cordova/lib/run.js @@ -126,7 +126,7 @@ var path = require('path'), } module.exports.help = function(args) { - console.log('Usage: ' + path.relative(process.cwd(), args[0]) + ' [options]'); + console.log('Usage: ' + path.relative(process.cwd(), args[1]) + ' [options]'); console.log('Build options :'); console.log(' --debug : Builds project in debug mode'); console.log(' --release : Builds project in release mode');