Improvement for docker subcommand's help messages
Signed-off-by: Wen Cheng Ma <wenchma@cn.ibm.com> Upstream-commit: d7dc439623ff18d2a8dd152dbb032a307100cb2e Component: engine
This commit is contained in:
@ -571,10 +571,7 @@ func (fs *FlagSet) PrintDefaults() {
|
||||
format := " -%s=%s"
|
||||
fmt.Fprintf(writer, format, strings.Join(names, ", -"), val)
|
||||
}
|
||||
for i, line := range strings.Split(flag.Usage, "\n") {
|
||||
if i != 0 {
|
||||
line = " " + line
|
||||
}
|
||||
for _, line := range strings.Split(flag.Usage, "\n") {
|
||||
fmt.Fprintln(writer, "\t", line)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user