Skip to content

Commit 19b9cf7

Browse files
authored
internal/build: show ppa upload process stdout on stdout (#24588)
1 parent 6a44bf6 commit 19b9cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/build/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func render(tpl *template.Template, outputFile string, outputPerm os.FileMode, x
115115
// the form sftp://[user@]host[:port].
116116
func UploadSFTP(identityFile, host, dir string, files []string) error {
117117
sftp := exec.Command("sftp")
118-
sftp.Stdout = nil
118+
sftp.Stdout = os.Stdout
119119
sftp.Stderr = os.Stderr
120120
if identityFile != "" {
121121
sftp.Args = append(sftp.Args, "-i", identityFile)

0 commit comments

Comments
 (0)