go/buildutil: fix usage message for -tags flag
Now: % gorename -h Usage of ./gorename: ... -tags build tags a list of build tags to consider... Change-Id: I46d6906f683407bad6f3dee25c63b139f47e4588 Reviewed-on: https://go-review.googlesource.com/9655 Reviewed-by: Dominik Honnef <dominik@honnef.co> Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
parent
96f6cfbb92
commit
fb47c16287
|
@ -4,9 +4,9 @@ package buildutil
|
|||
|
||||
import "fmt"
|
||||
|
||||
const TagsFlagDoc = `'tag list'\ta list of build tags to consider satisfied during the build.
|
||||
For more information about build tags, see the description of
|
||||
build constraints in the documentation for the go/build package`
|
||||
const TagsFlagDoc = "a list of `build tags` to consider satisfied during the build. " +
|
||||
"For more information about build tags, see the description of " +
|
||||
"build constraints in the documentation for the go/build package"
|
||||
|
||||
// TagsFlag is an implementation of the flag.Value interface that parses
|
||||
// a flag value in the same manner as go build's -tags flag and
|
||||
|
|
Loading…
Reference in New Issue