Fix exception for unknown flag in cordova/run

This commit is contained in:
Andrew Grieve 2015-01-19 21:50:14 -05:00
parent fcece7e189
commit d30a5e0388

View File

@ -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).');
}
}