Merge pull request #5549 from thaJeztah/remove_cli_errors

cli: remove deprecated Errors type
This commit is contained in:
Sebastiaan van Stijn 2024-10-22 12:35:42 +02:00 committed by GitHub
commit ea511f0de2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 20 deletions

View File

@ -2,28 +2,8 @@ package cli
import ( import (
"strconv" "strconv"
"strings"
) )
// Errors is a list of errors.
// Useful in a loop if you don't want to return the error right away and you want to display after the loop,
// all the errors that happened during the loop.
//
// Deprecated: use [errors.Join] instead; will be removed in the next release.
type Errors []error
func (errList Errors) Error() string {
if len(errList) < 1 {
return ""
}
out := make([]string, len(errList))
for i := range errList {
out[i] = errList[i].Error()
}
return strings.Join(out, ", ")
}
// StatusError reports an unsuccessful exit by a command. // StatusError reports an unsuccessful exit by a command.
type StatusError struct { type StatusError struct {
Status string Status string