mirror of https://github.com/docker/cli.git
man: remove deprecated io/ioutil and use t.TempDir()
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
7491c5ac65
commit
85754c9ab5
|
@ -2,7 +2,6 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
@ -74,7 +73,7 @@ func loadLongDescription(cmd *cobra.Command, path string) error {
|
|||
continue
|
||||
}
|
||||
|
||||
content, err := ioutil.ReadFile(fullpath)
|
||||
content, err := os.ReadFile(fullpath)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -85,7 +84,7 @@ func loadLongDescription(cmd *cobra.Command, path string) error {
|
|||
continue
|
||||
}
|
||||
|
||||
content, err = ioutil.ReadFile(fullpath)
|
||||
content, err = os.ReadFile(fullpath)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue