diff options
author | bogem <[email protected]> | 2016-11-21 23:00:44 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-11-23 09:13:00 +0100 |
commit | e81c06c3f0a6f9a960d91b31960e48a807112655 (patch) | |
tree | 21d771cf673370736111ba48f646c093563353d7 /source | |
parent | 647540d0ef9819c35819715f1f35198f05e5409e (diff) | |
download | hugo-e81c06c3f0a6f9a960d91b31960e48a807112655.tar.gz hugo-e81c06c3f0a6f9a960d91b31960e48a807112655.zip |
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 (limited to 'source')
-rw-r--r-- | source/filesystem.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/filesystem.go b/source/filesystem.go index 5b47b7abf..7873b47f1 100644 --- 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.") } } |