Merge pull request #8575 from afbjorklund/podman-dev
Support prerelease versions of podman binarypull/8576/head
commit
e8cebe0330
|
|
@ -94,7 +94,7 @@ func status() registry.State {
|
|||
cmd.Env = append(os.Environ(), "LANG=C", "LC_ALL=C") // sudo is localized
|
||||
}
|
||||
o, err := cmd.Output()
|
||||
output := string(o)
|
||||
output := strings.TrimSpace(string(o))
|
||||
if err == nil {
|
||||
glog.Infof("podman version: %s", output)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue