2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-06 19:10:49 +00:00

Return a fatal for location.Parse

This commit is contained in:
Alexander Neumann 2016-09-18 13:28:41 +02:00
parent 83c35bd6b5
commit 2b9a408ccc

View File

@ -296,7 +296,7 @@ func open(s string) (restic.Backend, error) {
debug.Log("open", "parsing location %v", s)
loc, err := location.Parse(s)
if err != nil {
return nil, err
return nil, errors.Fatalf("parsing repository location failed: %v", err)
}
var be restic.Backend