From 82e59f471a9b5d475c39773cdd27a9ada2f35962 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 18 Apr 2024 20:54:22 +0300 Subject: chore(nix/buildGo): cleanups io/ioutil is deprecated, and the range expression can be simplified. Change-Id: I73b85991faafa333bddf90adbdefe2006f8d409c Reviewed-on: https://cl.tvl.fyi/c/depot/+/11460 Reviewed-by: tazjin Autosubmit: flokli Tested-by: BuildkiteCI --- nix/buildGo/external/main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'nix/buildGo/external/main.go') diff --git a/nix/buildGo/external/main.go b/nix/buildGo/external/main.go index a77c43b371..4402a8eb86 100644 --- a/nix/buildGo/external/main.go +++ b/nix/buildGo/external/main.go @@ -10,7 +10,6 @@ import ( "flag" "fmt" "go/build" - "io/ioutil" "log" "os" "path" @@ -74,8 +73,8 @@ func findGoDirs(at string) ([]string, error) { } goDirs := []string{} - for k, _ := range dirSet { - goDirs = append(goDirs, k) + for goDir := range dirSet { + goDirs = append(goDirs, goDir) } return goDirs, nil @@ -148,7 +147,7 @@ func analysePackage(root, source, importpath string, stdlib map[string]bool) (pk } func loadStdlibPkgs(from string) (pkgs map[string]bool, err error) { - f, err := ioutil.ReadFile(from) + f, err := os.ReadFile(from) if err != nil { return } -- cgit 1.4.1