0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-12 03:19:36 +03:00

Move from deprecated ioutil to os and io packages (#744)

This commit is contained in:
KallyDev
2021-09-29 02:49:34 +08:00
committed by GitHub
parent 1ef824c0b4
commit 4abf98c1be
17 changed files with 29 additions and 43 deletions

View File

@ -5,7 +5,7 @@ import (
"crypto/rand"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime"
@ -102,7 +102,7 @@ func genTestBinaryPath() {
testBinaryPathGen.Do(func() {
var tempDir string
common.Must(retry.Timed(5, 100).On(func() error {
dir, err := ioutil.TempDir("", "xray")
dir, err := os.MkdirTemp("", "xray")
if err != nil {
return err
}