Reimplement case-insensitivity move bug fix (#3047)

* Use eq for FindByPath for case sensitivity
* Handle case sensitive moves
This commit is contained in:
WithoutPants
2022-10-25 11:37:54 +11:00
committed by GitHub
parent 1c92336798
commit 479ebfc88d
4 changed files with 33 additions and 5 deletions

View File

@@ -83,6 +83,10 @@ func (f *ZipFS) OpenZip(name string) (*ZipFS, error) {
return nil, errZipFSOpenZip
}
func (f *ZipFS) IsPathCaseSensitive(path string) (bool, error) {
return true, nil
}
type zipReadDirFile struct {
fs.File
}