mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-01 02:12:58 +08:00
CB-6876 Fix the "print usage"
This commit is contained in:
parent
eb623a84d5
commit
d427c52aac
2
bin/templates/cordova/lib/run.js
vendored
2
bin/templates/cordova/lib/run.js
vendored
@ -125,7 +125,7 @@ var path = require('path'),
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports.help = function() {
|
module.exports.help = function(args) {
|
||||||
console.log('Usage: ' + path.relative(process.cwd(), args[0]) + ' [options]');
|
console.log('Usage: ' + path.relative(process.cwd(), args[0]) + ' [options]');
|
||||||
console.log('Build options :');
|
console.log('Build options :');
|
||||||
console.log(' --debug : Builds project in debug mode');
|
console.log(' --debug : Builds project in debug mode');
|
||||||
|
@ -26,7 +26,7 @@ var run = require('./lib/run'),
|
|||||||
// Support basic help commands
|
// Support basic help commands
|
||||||
if (args[2] == '--help' || args[2] == '/?' || args[2] == '-h' ||
|
if (args[2] == '--help' || args[2] == '/?' || args[2] == '-h' ||
|
||||||
args[2] == 'help' || args[2] == '-help' || args[2] == '/help') {
|
args[2] == 'help' || args[2] == '-help' || args[2] == '/help') {
|
||||||
run.help();
|
run.help(args);
|
||||||
} else {
|
} else {
|
||||||
reqs.run().done(function() {
|
reqs.run().done(function() {
|
||||||
return run.run(args);
|
return run.run(args);
|
||||||
|
Loading…
Reference in New Issue
Block a user