Skip to content

Commit 1652684

Browse files
committed
internal/build: revert raising the chunk size for PPA
1 parent a43efce commit 1652684

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
@@ -130,7 +130,7 @@ func render(tpl *template.Template, outputFile string, outputPerm os.FileMode, x
130130
// The destination host may be specified either as [user@]host[: or as a URI in
131131
// the form sftp://[user@]host[:port].
132132
func UploadSFTP(identityFile, host, dir string, files []string) error {
133-
sftp := exec.Command("sftp", "-B", "262144")
133+
sftp := exec.Command("sftp")
134134
sftp.Stderr = os.Stderr
135135
if identityFile != "" {
136136
sftp.Args = append(sftp.Args, "-i", identityFile)

0 commit comments

Comments
 (0)