mirror of
https://github.com/golang/go
synced 2024-11-18 03:04:45 -07:00
cmd/go: send all go build -n output to stderr
Also change a -v print, for consistency. Fixes #12913 Change-Id: I6cc067d9f8dac66b1f9d1a675e0fbe0528371d0d Reviewed-on: https://go-review.googlesource.com/16737 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
2ffdbd7ce4
commit
3953c1d84f
@ -1287,11 +1287,11 @@ func (b *builder) build(a *action) (err error) {
|
|||||||
// different sections of the bootstrap script have to
|
// different sections of the bootstrap script have to
|
||||||
// be merged, the banners give patch something
|
// be merged, the banners give patch something
|
||||||
// to use to find its context.
|
// to use to find its context.
|
||||||
fmt.Printf("\n#\n# %s\n#\n\n", a.p.ImportPath)
|
b.print("\n#\n# " + a.p.ImportPath + "\n#\n\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
if buildV {
|
if buildV {
|
||||||
fmt.Fprintf(os.Stderr, "%s\n", a.p.ImportPath)
|
b.print(a.p.ImportPath + "\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make build directory.
|
// Make build directory.
|
||||||
|
Loading…
Reference in New Issue
Block a user