Fix golint warning: helpers/path.go:473:5: error var
WalkRootTooShortError should have name of the form ErrFoo
See #2014
return path, nil
}
-var WalkRootTooShortError = errors.New("Path too short. Stop walking.")
+var ErrWalkRootTooShort = errors.New("Path too short. Stop walking.")
// SymbolicWalk is like filepath.Walk, but it supports the root being a
// symbolic link. It will still not follow symbolic links deeper down in
// Sanity check
if len(root) < 4 {
- return WalkRootTooShortError
+ return ErrWalkRootTooShort
}
// Handle the root first
if err != nil {
jww.ERROR.Println(err)
- if err == helpers.WalkRootTooShortError {
+ if err == helpers.ErrWalkRootTooShort {
panic("The root path is too short. If this is a test, make sure to init the content paths.")
}
}