Skip to content

Commit 32592fa

Browse files
committed
cmd/gomote: add debug print showing actual Go bootstrap toolchain
This only affects legacy mode (which we use today) but it is still useful for now. Change-Id: Id8324b0846ccf8cb1bc7ab8b8aabc18585ed355d Reviewed-on: https://go-review.googlesource.com/c/build/+/419991 Reviewed-by: Carlos Amedee <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Run-TryBot: Russ Cox <[email protected]>
1 parent 4b12e2b commit 32592fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cmd/gomote/push.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ func legacyPush(args []string) error {
9393

9494
if !haveGo14 {
9595
if u := conf.GoBootstrapURL(buildEnv); u != "" {
96-
log.Printf("installing go1.4")
96+
log.Printf("installing go1.4 from %s", u)
9797
if dryRun {
98-
log.Printf("(Dry-run) Would have pushed go1.4")
98+
log.Printf("(Dry-run) Would have pushed go1.4 from %s", u)
9999
} else {
100100
if err := bc.PutTarFromURL(ctx, u, "go1.4"); err != nil {
101101
return err

0 commit comments

Comments
 (0)