mirror of
https://github.com/golang/go
synced 2024-11-11 22:20:22 -07:00
cmd/go: print newline after GOOS/GOARCH error
The newline was dropped during the refactor in CL 194617. Fixes #35984 Change-Id: I7e0d7aa2d7a4d1f44898921f8bb40401620d78b2 Reviewed-on: https://go-review.googlesource.com/c/go/+/209965 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
993ec7f6cd
commit
e751af1aba
@ -291,7 +291,7 @@ func (b *Builder) Init() {
|
||||
}
|
||||
|
||||
if err := CheckGOOSARCHPair(cfg.Goos, cfg.Goarch); err != nil {
|
||||
fmt.Fprintf(os.Stderr, "cmd/go: %v", err)
|
||||
fmt.Fprintf(os.Stderr, "cmd/go: %v\n", err)
|
||||
base.SetExitStatus(2)
|
||||
base.Exit()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user