cleanup(all): stop using deprecated ioutil functions (#381)
Spotted while working on https://github.com/ooni/probe/issues/1417 See https://golang.org/pkg/io/ioutil/
This commit is contained in:
parent
721ce95315
commit
fd5405ade1
25 changed files with 64 additions and 72 deletions
|
|
@ -4,7 +4,6 @@ import (
|
|||
"bytes"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
|
@ -114,7 +113,7 @@ func (managerDarwin) writePlist() error {
|
|||
return err
|
||||
}
|
||||
log.Infof("exec: writePlist(%s)", plistPath)
|
||||
return ioutil.WriteFile(plistPath, out.Bytes(), 0644)
|
||||
return os.WriteFile(plistPath, out.Bytes(), 0644)
|
||||
}
|
||||
|
||||
func (managerDarwin) start() error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue