1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-17 00:18:05 +02:00

bump dependencies

This commit is contained in:
Jesse Duffield
2021-06-15 08:12:38 +10:00
parent ce7cbe58a0
commit 3dd88d6138
32 changed files with 396 additions and 115 deletions

View File

@ -139,7 +139,6 @@ func WrapPrefix(e interface{}, prefix string, skip int) *Error {
}
// Errorf creates a new error with the given message. You can use it
// as a drop-in replacement for fmt.Errorf() to provide descriptive
// errors in return values.
@ -203,3 +202,8 @@ func (err *Error) TypeName() string {
}
return reflect.TypeOf(err.Err).String()
}
// Return the wrapped error (implements api for As function).
func (err *Error) Unwrap() error {
return err.Err
}