From 32e07c22d07ae659d1ba9092effae73395824ab4 Mon Sep 17 00:00:00 2001 From: Marcel Kinard Date: Wed, 4 Jun 2014 19:23:43 -0400 Subject: [PATCH] CB-6876 Show the correct executable name --- bin/templates/cordova/lib/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/templates/cordova/lib/run.js b/bin/templates/cordova/lib/run.js index be7f5a29..da8fc607 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');