Skip to content

Commit 36ff0b3

Browse files
zeek0xaldas
authored andcommitted
Replace relative path determination from proprietary to std
1 parent a0c2115 commit 36ff0b3

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

echo_fs.go

+1-17
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"net/url"
88
"os"
99
"path/filepath"
10-
"runtime"
1110
"strings"
1211
)
1312

@@ -125,7 +124,7 @@ func subFS(currentFs fs.FS, root string) (fs.FS, error) {
125124
// we need to make exception for `defaultFS` instances as it interprets root prefix differently from fs.FS.
126125
// fs.Fs.Open does not like relative paths ("./", "../") and absolute paths at all but prior echo.Filesystem we
127126
// were able to use paths like `./myfile.log`, `/etc/hosts` and these would work fine with `os.Open` but not with fs.Fs
128-
if isRelativePath(root) {
127+
if !filepath.IsAbs(root) {
129128
root = filepath.Join(dFS.prefix, root)
130129
}
131130
return &defaultFS{
@@ -136,21 +135,6 @@ func subFS(currentFs fs.FS, root string) (fs.FS, error) {
136135
return fs.Sub(currentFs, root)
137136
}
138137

139-
func isRelativePath(path string) bool {
140-
if path == "" {
141-
return true
142-
}
143-
if path[0] == '/' {
144-
return false
145-
}
146-
if runtime.GOOS == "windows" && strings.IndexByte(path, ':') != -1 {
147-
// https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file?redirectedfrom=MSDN#file_and_directory_names
148-
// https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats
149-
return false
150-
}
151-
return true
152-
}
153-
154138
// MustSubFS creates sub FS from current filesystem or panic on failure.
155139
// Panic happens when `fsRoot` contains invalid path according to `fs.ValidPath` rules.
156140
//

0 commit comments

Comments
 (0)