mirror of
https://github.com/restic/restic.git
synced 2026-02-10 06:13:21 -05:00
init: remove duplication from error message
This commit is contained in:
parent
2d7611373e
commit
4f1390436d
1 changed files with 4 additions and 0 deletions
|
|
@ -501,6 +501,10 @@ func innerOpen(ctx context.Context, s string, gopts GlobalOptions, opts options.
|
|||
return nil, fmt.Errorf("Fatal: %w at %v: %v", ErrNoRepository, location.StripPassword(gopts.backends, s), err)
|
||||
}
|
||||
if err != nil {
|
||||
if create {
|
||||
// init already wraps the error message
|
||||
return nil, err
|
||||
}
|
||||
return nil, errors.Fatalf("unable to open repository at %v: %v", location.StripPassword(gopts.backends, s), err)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue