You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2014/06/05 01:24:40 UTC

android commit: CB-6876 Show the correct executable name

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 <cm...@gmail.com>
Authored: Wed Jun 4 19:23:43 2014 -0400
Committer: Marcel Kinard <cm...@gmail.com>
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');