cli/command/system: fix error formatting (errlint)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-09-09 17:26:54 +02:00
parent c5150177bf
commit 9ba1314d3a
2 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ func inspectAll(ctx context.Context, dockerCLI command.Cli, getSize bool, typeCo
}
return v, raw, err
}
return nil, nil, errors.Errorf("Error: No such object: %s", ref)
return nil, nil, errors.Errorf("error: no such object: %s", ref)
}
}