helpers: Rename WalkRootTooShortError to ErrWalkRootTooShort
authorbogem <albertnigma@gmail.com>
Mon, 21 Nov 2016 22:00:44 +0000 (23:00 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Nov 2016 08:13:00 +0000 (09:13 +0100)
Fix golint warning: helpers/path.go:473:5: error var
WalkRootTooShortError should have name of the form ErrFoo

See #2014

helpers/path.go
source/filesystem.go

index 68a72b71acf060a67e05bd495c293e788275ad90..8dc5f9324d8d3d8da2540d5e3b06a170c7afe19d 100644 (file)
@@ -470,7 +470,7 @@ func FindCWD() (string, error) {
        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
@@ -479,7 +479,7 @@ func SymbolicWalk(fs afero.Fs, root string, walker filepath.WalkFunc) error {
 
        // Sanity check
        if len(root) < 4 {
-               return WalkRootTooShortError
+               return ErrWalkRootTooShort
        }
 
        // Handle the root first
index 5b47b7abfd015f6066af2eb049fd6febe7368f31..7873b47f1413a4757a2d0672892b25a3183e2665 100644 (file)
@@ -105,7 +105,7 @@ func (f *Filesystem) captureFiles() {
 
        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.")
                }
        }