Clean up utils package

This commit is contained in:
Daniel 2019-09-20 22:05:18 +02:00
parent 3672fa9f45
commit 0716a10400
3 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ func ExampleDirStructure() {
fmt.Println(err)
}
filepath.Walk(basePath, func(path string, info os.FileInfo, err error) error {
_ = filepath.Walk(basePath, func(path string, info os.FileInfo, err error) error {
if err == nil {
dir := strings.TrimPrefix(path, basePath)
if dir == "" {