Skip to content

Commit 505d141

Browse files
committed
remove provided
1 parent d2ce0de commit 505d141

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cli/util/options.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ function parse(argv, config) {
6262
if (option.type == null || option.type === "b") options[key] = true; // flag
6363
else {
6464
if (i + 1 < argv.length && argv[i + 1].charCodeAt(0) != 45) { // present
65-
provided.add(key);
6665
switch (option.type) {
6766
case "i": options[key] = parseInt(argv[++i], 10); break;
6867
case "I": options[key] = (options[key] || []).concat(parseInt(argv[++i], 10)); break;

0 commit comments

Comments
 (0)