aiurovet

Results 7 comments of aiurovet

I took the latest stable from NuGet

OK. You can close the ticket. Sorry, I forgot to check before, but today I found that the filename `abc.cs` matches both `**.cs` and `**/*.cs` although the latter should fail....

Not quite. Even on Windows, `foo\gh/bar` (or `foo\gh\bar`, or `foo/gh/bar`) should not match the pattern `foo*/bar`, but only `foo**/bar`. Please refer to GNU documentation I mentioned already: section _globstar_ at...

Thank you, Brendan. I found this description on gnu.org: [https://www.gnu.org/software/tar/manual/html_section/Formats.html](https://www.gnu.org/software/tar/manual/html_section/Formats.html) It states that according to the archive format defined by `POSIX.1-2001` specification, there is no limit on the filename or...

I found a kind of workaround: if a substring is surrounded by double-quote characters, then backslashes are not converted. I always tend to quote paths to ensure the possible space...

Actually, no. I don't have a workaround, as chrome headless requires an option in a strict format: `--screenshot=unquoted-filepath`. This is weird, but unavoidable. Due to my application's limitation, I cannot...