Skip to content

Commit

Permalink
internal/build: show ppa upload process stdout on stdout (#24588)
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman committed Mar 25, 2022
1 parent 6a44bf6 commit 19b9cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/build/util.go
Expand Up @@ -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)
Expand Down

0 comments on commit 19b9cf7

Please sign in to comment.