Skip to content

Commit 4ec4235

Browse files
committed
build: fix gobootstrap path for the PPA
1 parent e1e2781 commit 4ec4235

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ override_dh_auto_build:
2020
# We're also shipping the bootstrapper as of Go 1.20 as it had minimum version
2121
# requirements opposed to older versions of Go.
2222
(mv .goboot ../ && cd ../.goboot/src && ./make.bash)
23-
export GOROOT_BOOTSTRAP=`pwd`/../.goboot/bin
23+
export GOROOT_BOOTSTRAP=`pwd`/../.goboot
2424
(mv .go ../ && cd ../.go/src && ./make.bash)
2525

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

internal/build/util.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ func UploadSFTP(identityFile, host, dir string, files []string) error {
176176
time.Sleep(500 * time.Millisecond)
177177
aborted = true
178178
sftp.Process.Kill()
179+
return
179180
}
180181
}
181182
}()

0 commit comments

Comments
 (0)