Skip to content

Commit

Permalink
Address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
blva committed Mar 19, 2024
1 parent b6483fa commit d0683b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/podman/client.go
Expand Up @@ -182,7 +182,7 @@ func (o *client) Diagnostics(ctx context.Context) *Diagnostic {
if err != nil {
d.MachineFound = false
if d.MachineRequired {
d.Errors = append(d.Errors, fmt.Errorf("failed to detect podman machine: %w", err).Error())
d.Errors = append(d.Errors, fmt.Sprintf("failed to detect podman machine: %s", err))
}
} else {
d.MachineInfo = info
Expand Down

0 comments on commit d0683b6

Please sign in to comment.