update golangci-lint and replace deprecated calls to io/ioutil

This commit is contained in:
Markus Muellner
2022-09-22 17:18:14 +02:00
committed by Benj Fassbind
parent 71fd730598
commit 352f4e8772
23 changed files with 30 additions and 52 deletions

View File

@@ -3,7 +3,6 @@ package files
import (
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"sync"
@@ -81,7 +80,7 @@ func (pool *PackagePool) FilepathList(progress aptly.Progress) ([]string, error)
pool.Lock()
defer pool.Unlock()
dirs, err := ioutil.ReadDir(pool.rootPath)
dirs, err := os.ReadDir(pool.rootPath)
if err != nil {
if os.IsNotExist(err) {
return nil, nil