codecov / codecov-exe

.exe report uploader for Codecov https://codecov.io
MIT License
25 stars 21 forks source link

-f and -e command line arguments don't accept multiple values as the docs suggest #46

Closed projectgoav closed 5 years ago

projectgoav commented 5 years ago

CommandLineOptions.cs suggests the following command line codecov -f a b c d would detect and upload the 4 reports a, b, c & d. However, this doesn't work.

CommandLineParser didn't seem to split the values without specifying the Seperator attribute. I have added Seperator = ' ' attribute to both these options.