Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit ac572ca

Browse files
committed
support wild card, align with v3io 2.3+
1 parent 90a996a commit ac572ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func IsMatch(task *ListDirTask, name string, mtime time.Time, size int64) bool {
159159
func ParseFilename(fullpath string, params *PathParams, forceDir bool) error {
160160
fullpath, filter := filepath.Split(fullpath)
161161
if hasMagics(fullpath) {
162-
return fmt.Errorf("No support for wildcard directoty names")
162+
return fmt.Errorf("No support for wildcard directory names")
163163
}
164164
params.Path = fullpath
165165
if filter == "" || hasMagics(filter) {

0 commit comments

Comments
 (0)