exclude param - array parsing

This commit is contained in:
SamKirkland 2020-11-13 13:25:32 -06:00
parent f0ef8012ea
commit 8da6fdde60
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -6654,7 +6654,7 @@ function optionalStringArray(argumentName, rawValue) {
return undefined; return undefined;
} }
// split value by space and comma // split value by space and comma
return rawValue.split("\n").filter(str => str !== ""); return rawValue.split(" - ").filter(str => str !== "");
} }

View File

@ -136,5 +136,5 @@ function optionalStringArray(argumentName: string, rawValue: string): string[] |
} }
// split value by space and comma // split value by space and comma
return rawValue.split("\n").filter(str => str !== ""); return rawValue.split(" - ").filter(str => str !== "");
} }