From af5e55ac0d36a4ccb9b8ff4bc888a9b608fa62f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roth?= Date: Wed, 24 Apr 2024 22:06:11 +0200 Subject: [PATCH] fix golangci-lint --- deb/publish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/publish.go b/deb/publish.go index 216323ff0..bea510090 100644 --- a/deb/publish.go +++ b/deb/publish.go @@ -555,7 +555,7 @@ func (p *PublishedRepo) GetSkelFiles(skelDir string, component string) (map[stri } fsPath := filepath.Join(skelDir, p.Prefix, "dists", p.Distribution, component) - if err := filepath.Walk(fsPath, func(path string, info os.FileInfo, err error) error { + if err := filepath.Walk(fsPath, func(path string, _ os.FileInfo, err error) error { if err != nil { return err }