mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2026-04-10 12:32:17 +02:00
exclude param - array parsing
This commit is contained in:
@@ -136,5 +136,5 @@ function optionalStringArray(argumentName: string, rawValue: string): string[] |
|
||||
}
|
||||
|
||||
// split value by space and comma
|
||||
return rawValue.split("\n").filter(str => str !== "");
|
||||
return rawValue.split(" - ").filter(str => str !== "");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user