From 19b9cf714ff1aeb044e67e8eb8f1e3cb4f965e7d Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 25 Mar 2022 15:06:29 +0100 Subject: [PATCH] internal/build: show ppa upload process stdout on stdout (#24588) --- internal/build/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/build/util.go b/internal/build/util.go index 2bdced82ee2ff..b2442666cbb71 100644 --- a/internal/build/util.go +++ b/internal/build/util.go @@ -115,7 +115,7 @@ func render(tpl *template.Template, outputFile string, outputPerm os.FileMode, x // the form sftp://[user@]host[:port]. func UploadSFTP(identityFile, host, dir string, files []string) error { sftp := exec.Command("sftp") - sftp.Stdout = nil + sftp.Stdout = os.Stdout sftp.Stderr = os.Stderr if identityFile != "" { sftp.Args = append(sftp.Args, "-i", identityFile)