mirror of
https://github.com/containers/skopeo.git
synced 2025-09-14 05:50:56 +00:00
Update module github.com/spf13/pflag to v1.0.10
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
14
vendor/github.com/spf13/pflag/flag.go
generated
vendored
14
vendor/github.com/spf13/pflag/flag.go
generated
vendored
@@ -143,8 +143,9 @@ type ParseErrorsAllowlist struct {
|
||||
UnknownFlags bool
|
||||
}
|
||||
|
||||
// DEPRECATED: please use ParseErrorsAllowlist instead
|
||||
// This type will be removed in a future release
|
||||
// ParseErrorsWhitelist defines the parsing errors that can be ignored.
|
||||
//
|
||||
// Deprecated: use [ParseErrorsAllowlist] instead. This type will be removed in a future release.
|
||||
type ParseErrorsWhitelist = ParseErrorsAllowlist
|
||||
|
||||
// NormalizedName is a flag name that has been normalized according to rules
|
||||
@@ -165,8 +166,9 @@ type FlagSet struct {
|
||||
// ParseErrorsAllowlist is used to configure an allowlist of errors
|
||||
ParseErrorsAllowlist ParseErrorsAllowlist
|
||||
|
||||
// DEPRECATED: please use ParseErrorsAllowlist instead
|
||||
// This field will be removed in a future release
|
||||
// ParseErrorsAllowlist is used to configure an allowlist of errors.
|
||||
//
|
||||
// Deprecated: use [FlagSet.ParseErrorsAllowlist] instead. This field will be removed in a future release.
|
||||
ParseErrorsWhitelist ParseErrorsAllowlist
|
||||
|
||||
name string
|
||||
@@ -1185,7 +1187,7 @@ func (f *FlagSet) Parse(arguments []string) error {
|
||||
case ContinueOnError:
|
||||
return err
|
||||
case ExitOnError:
|
||||
if errors.Is(err, ErrHelp) {
|
||||
if err == ErrHelp {
|
||||
os.Exit(0)
|
||||
}
|
||||
fmt.Fprintln(f.Output(), err)
|
||||
@@ -1214,7 +1216,7 @@ func (f *FlagSet) ParseAll(arguments []string, fn func(flag *Flag, value string)
|
||||
case ContinueOnError:
|
||||
return err
|
||||
case ExitOnError:
|
||||
if errors.Is(err, ErrHelp) {
|
||||
if err == ErrHelp {
|
||||
os.Exit(0)
|
||||
}
|
||||
fmt.Fprintln(f.Output(), err)
|
||||
|
Reference in New Issue
Block a user