We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0931d commit dfe6c13Copy full SHA for dfe6c13
win32/build/confutils.js
@@ -2096,7 +2096,9 @@ function generate_files()
2096
2097
if (INVALID_CONFIG_ARGS.length) {
2098
STDOUT.WriteLine('WARNING');
2099
- STDOUT.WriteLine('The following arguments is invalid, and therefore ignored:');
+ STDOUT.WriteLine('The following ' +
2100
+ (INVALID_CONFIG_ARGS.length > 1 ? 'arguments are' : 'argument is') +
2101
+ ' invalid, and therefore ignored:');
2102
2103
for (var i = 0; i < INVALID_CONFIG_ARGS.length; ++i) {
2104
STDOUT.WriteLine(' ' + INVALID_CONFIG_ARGS[i]);
0 commit comments