You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is happening when lintrunner issues git grep -Il, and git outputs the paths with octal-escaped characters. This happens in get_all_files().
We use
lintrunnerin pytorch/kineto repo. When we try to run with--all-files, we get the error:The reason is that through submodules, we transitively include filenames with non-Latin characters: https://github.com/civetweb/civetweb/tree/d7ba35bbb649209c66e582d5a0244ba988a15159/test/nonlatin.
The problem is happening when
lintrunnerissuesgit grep -Il, andgitoutputs the paths with octal-escaped characters. This happens inget_all_files().