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 d2ce0de commit 505d141Copy full SHA for 505d141
cli/util/options.js
@@ -62,7 +62,6 @@ function parse(argv, config) {
62
if (option.type == null || option.type === "b") options[key] = true; // flag
63
else {
64
if (i + 1 < argv.length && argv[i + 1].charCodeAt(0) != 45) { // present
65
- provided.add(key);
66
switch (option.type) {
67
case "i": options[key] = parseInt(argv[++i], 10); break;
68
case "I": options[key] = (options[key] || []).concat(parseInt(argv[++i], 10)); break;
0 commit comments