Skip to content

Commit a43efce

Browse files
committed
build: add some PPA debug logs, sigh
1 parent 4ec4235 commit a43efce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/deb/ethereum/deb.rules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ override_dh_auto_build:
2121
# requirements opposed to older versions of Go.
2222
(mv .goboot ../ && cd ../.goboot/src && ./make.bash)
2323
export GOROOT_BOOTSTRAP=`pwd`/../.goboot
24+
echo $GOROOT_BOOTSTRAP
2425
(mv .go ../ && cd ../.go/src && ./make.bash)
2526

2627
# We can't download external go modules within Launchpad, so we're shipping the

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")
133+
sftp := exec.Command("sftp", "-B", "262144")
134134
sftp.Stderr = os.Stderr
135135
if identityFile != "" {
136136
sftp.Args = append(sftp.Args, "-i", identityFile)

0 commit comments

Comments
 (0)