lib/fs: Resolve 8.3 filenames from watcher (ref #3800) (#4975)

This commit is contained in:
Simon Frei
2018-06-04 13:41:03 +02:00
committed by GitHub
parent 8b15624f7d
commit ee6516aa31
5 changed files with 136 additions and 35 deletions

View File

@@ -51,3 +51,7 @@ func (f *BasicFilesystem) Hide(name string) error {
func (f *BasicFilesystem) Roots() ([]string, error) {
return []string{"/"}, nil
}
func (f *BasicFilesystem) resolveWin83(absPath string) string {
return absPath
}