Replace usages of ioutil.ReadDir

This changes the return type to []fs.DirEntry. However, as we only use
the filenames anyways, this doesn't make a difference.
This commit is contained in:
Michael Eischer
2022-12-02 19:42:19 +01:00
parent ff7ef5007e
commit f755233210
3 changed files with 3 additions and 6 deletions

View File

@@ -4,7 +4,6 @@ import (
"bufio"
"bytes"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
@@ -366,7 +365,7 @@ func runBuild(sourceDir, outputDir, version string) {
}
func readdir(dir string) []string {
fis, err := ioutil.ReadDir(dir)
fis, err := os.ReadDir(dir)
if err != nil {
die("readdir %v failed: %v", dir, err)
}