container.go: fix lint error

the error was:

libpod/container.go:219::error: struct field tag `json:"groups, omitempty"` not compatible with reflect.StructTag.Get: suspicious space in struct tag value (vet)

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>

Closes: #729
Approved by: baude
This commit is contained in:
Giuseppe Scrivano
2018-05-05 20:52:35 +02:00
committed by Atomic Bot
parent 7b93e7a3fa
commit fa4705c03b

View File

@ -216,7 +216,7 @@ type ContainerConfig struct {
// Can be specified by name or UID/GID
User string `json:"user,omitempty"`
// Additional groups to add
Groups []string `json:"groups, omitempty"`
Groups []string `json:"groups,omitempty"`
// Namespace Config
// IDs of container to share namespaces with