Fix exception for unknown flag in cordova/run

This commit is contained in:
Andrew Grieve
2015-01-19 21:50:14 -05:00
parent 1427c13504
commit 7375154228

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