URI: 
       helpers: Rename WalkRootTooShortError to ErrWalkRootTooShort - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit e81c06c3f0a6f9a960d91b31960e48a807112655
   DIR parent 647540d0ef9819c35819715f1f35198f05e5409e
  HTML Author: bogem <albertnigma@gmail.com>
       Date:   Mon, 21 Nov 2016 23:00:44 +0100
       
       helpers: Rename WalkRootTooShortError to ErrWalkRootTooShort
       
       Fix golint warning: helpers/path.go:473:5: error var
       WalkRootTooShortError should have name of the form ErrFoo
       
       See #2014
       
       Diffstat:
         M helpers/path.go                     |       4 ++--
         M source/filesystem.go                |       2 +-
       
       2 files changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/helpers/path.go b/helpers/path.go
       @@ -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
   DIR diff --git a/source/filesystem.go b/source/filesystem.go
       @@ -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.")
                        }
                }