Skip to content

Commit 2914b87

Browse files
authored
Fix option property access (#1214)
1 parent c23c3e4 commit 2914b87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/util/options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function parse(argv, config) {
7272
case "s": options[key] = option.default || ""; break;
7373
case "I":
7474
case "F":
75-
case "S": options[key] = options.default || []; break;
75+
case "S": options[key] = option.default || []; break;
7676
default: unknown.push(arg);
7777
}
7878
}

0 commit comments

Comments
 (0)