replace io/ioutil

fixes golangci-lint errors
This commit is contained in:
André Roth
2024-04-21 13:53:11 +02:00
parent c33141d49b
commit 1a3cfea348
3 changed files with 3 additions and 6 deletions

View File

@@ -2,7 +2,6 @@ package cmd
import (
"fmt"
"io/ioutil"
"os"
"strings"
"sync"
@@ -167,7 +166,7 @@ func aptlyMirrorUpdate(cmd *commander.Command, args []string) error {
task.TempDownPath, e = pp.GenerateTempPath(task.File.Filename)
} else {
var file *os.File
file, e = ioutil.TempFile("", task.File.Filename)
file, e = os.CreateTemp("", task.File.Filename)
if e == nil {
task.TempDownPath = file.Name()
file.Close()