Handle symlink zip files (#5249)

This commit is contained in:
WithoutPants
2024-09-11 13:58:02 +10:00
committed by GitHub
parent d1c207e40b
commit a17199ba21
7 changed files with 18 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ type FS interface {
Stat(name string) (fs.FileInfo, error)
Lstat(name string) (fs.FileInfo, error)
Open(name string) (fs.ReadDirFile, error)
OpenZip(name string) (ZipFS, error)
OpenZip(name string, size int64) (ZipFS, error)
IsPathCaseSensitive(path string) (bool, error)
}