Merge pull request #1066 from crazy-max/fix-inspect

inspect: fix printing of driver options
pull/1067/head
Tõnis Tiigi 3 years ago committed by GitHub
commit b7c4fe5a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -98,11 +98,10 @@ func runInspect(dockerCli command.Cli, in inspectOptions) error {
var driverOpts []string
for k, v := range n.DriverOpts {
driverOpts = append(driverOpts, fmt.Sprintf("\t%s=%s\n", k, v))
driverOpts = append(driverOpts, fmt.Sprintf("%s=%q", k, v))
}
if len(driverOpts) > 0 {
fmt.Fprintf(w, "Driver Options: %s", strings.Join(driverOpts, ","))
fmt.Fprintf(w, "Driver Options:\t%s\n", strings.Join(driverOpts, " "))
}
if err := ngi.drivers[i].di.Err; err != nil {

Loading…
Cancel
Save