Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
Signed-off-by: gfanton <[email protected]>
  • Loading branch information
gfanton committed Feb 12, 2025
1 parent 82e405e commit 8727cf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contribs/gnodev/pkg/packages/loader_glob.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ func (l GlobLoader) MatchPaths(globs ...string) ([]string, error) {
return err
}

path, relErr := filepath.Rel(root, dirpath)
if relErr != nil {
return relErr
path, err := filepath.Rel(root, dirpath)
if err != nil {
return err

Check warning on line 57 in contribs/gnodev/pkg/packages/loader_glob.go

View check run for this annotation

Codecov / codecov/patch

contribs/gnodev/pkg/packages/loader_glob.go#L57

Added line #L57 was not covered by tests
}

// normalize filepath to path
Expand Down

0 comments on commit 8727cf0

Please sign in to comment.