mirror of https://github.com/restic/restic.git
Merge pull request #1769 from McKael/cat_snapshot_stacktrace
cat snapshot: Do not display a stack trace with invalid IDs
This commit is contained in:
commit
c7b624ba0d
|
@ -58,7 +58,7 @@ func runCat(gopts GlobalOptions, args []string) error {
|
|||
// find snapshot id with prefix
|
||||
id, err = restic.FindSnapshot(repo, args[1])
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Fatalf("could not find snapshot: %v\n", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue