aboutsummaryrefslogtreecommitdiffstats
path: root/remote.go
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-11-14 09:36:44 +0000
committerGitHub <noreply@github.com>2023-11-14 09:36:44 +0000
commiteb1b04dbe45f7c9e866eb52e8ccccf3885a06217 (patch)
tree079a0e7944ec8280aa2d157b9fd6996d9ef941b9 /remote.go
parenta9509b0a52f116ea2969d51890a4265d98d50dcb (diff)
parenta28a4ac965f714e7506ba26212556fd3d9817712 (diff)
downloadgo-git-eb1b04dbe45f7c9e866eb52e8ccccf3885a06217.tar.gz
Merge pull request #922 from aymanbagabas/cleanup-ioutil
utils: remove ioutil.Pipe and use std library io.Pipe
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.go b/remote.go
index bbe275d..2b4122e 100644
--- a/remote.go
+++ b/remote.go
@@ -1387,7 +1387,7 @@ func pushHashes(
allDelete bool,
) (*packp.ReportStatus, error) {
- rd, wr := ioutil.Pipe()
+ rd, wr := io.Pipe()
config, err := s.Config()
if err != nil {