Skip to content

Commit

Permalink
Merge pull request #8575 from afbjorklund/podman-dev
Browse files Browse the repository at this point in the history
Support prerelease versions of podman binary
  • Loading branch information
medyagh committed Jun 26, 2020
2 parents 4fa824a + 9d98e85 commit e8cebe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/registry/drvs/podman/podman.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e8cebe0

Please sign in to comment.