Skip to content

Commit

Permalink
support wild card, align with v3io 2.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronha committed Jul 7, 2019
1 parent 90a996a commit ac572ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func IsMatch(task *ListDirTask, name string, mtime time.Time, size int64) bool {
func ParseFilename(fullpath string, params *PathParams, forceDir bool) error {
fullpath, filter := filepath.Split(fullpath)
if hasMagics(fullpath) {
return fmt.Errorf("No support for wildcard directoty names")
return fmt.Errorf("No support for wildcard directory names")
}
params.Path = fullpath
if filter == "" || hasMagics(filter) {
Expand Down

0 comments on commit ac572ca

Please sign in to comment.