1
0
mirror of https://github.com/golang/go synced 2024-11-11 23:20:24 -07:00

cmd/go: final edits for add go list -cgo and -export

These got lost because I violated the cardinal rule of Gerrit
which is never click the Submit button in the web UI.

Change-Id: I8ccdfb5d8691960f244941036d33fb5a5a3f0c9a
Reviewed-on: https://go-review.googlesource.com/117015
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Russ Cox 2018-04-19 10:54:12 -04:00
parent 156bbe283c
commit 35778aa497
2 changed files with 6 additions and 8 deletions

View File

@ -579,7 +579,7 @@
//
// Usage:
//
// go list [-cgo] [-deps] [-e] [-f format] [-json] [-list] [-test] [build flags] [packages]
// go list [-cgo] [-deps] [-e] [-export] [-f format] [-json] [-list] [-test] [build flags] [packages]
//
// List lists the packages named by the import paths, one per line.
//
@ -706,9 +706,8 @@
// a non-nil Error field; other information may or may not be missing
// (zeroed).
//
// The -export flag causes list to set the package's Export field to
// the name of a file containing up-to-date export information for
// the given package.
// The -export flag causes list to set the Export field to the name of a
// file containing up-to-date export information for the given package.
//
// The -test flag causes list to report not only the named packages
// but also their test binaries (for packages with tests), to convey to

View File

@ -23,7 +23,7 @@ import (
)
var CmdList = &base.Command{
UsageLine: "list [-cgo] [-deps] [-e] [-f format] [-json] [-list] [-test] [build flags] [packages]",
UsageLine: "list [-cgo] [-deps] [-e] [-export] [-f format] [-json] [-list] [-test] [build flags] [packages]",
Short: "list packages",
Long: `
List lists the packages named by the import paths, one per line.
@ -151,9 +151,8 @@ printing. Erroneous packages will have a non-empty ImportPath and
a non-nil Error field; other information may or may not be missing
(zeroed).
The -export flag causes list to set the package's Export field to
the name of a file containing up-to-date export information for
the given package.
The -export flag causes list to set the Export field to the name of a
file containing up-to-date export information for the given package.
The -test flag causes list to report not only the named packages
but also their test binaries (for packages with tests), to convey to