2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-11 05:12:21 +00:00

Merge pull request #1431 from n0npax/master

fix #1411
This commit is contained in:
Alexander Neumann 2017-11-27 21:54:06 +01:00
commit 0cc8fc6f18

View File

@ -3,6 +3,7 @@ package main
import (
"context"
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/index"
"github.com/restic/restic/internal/restic"
@ -66,7 +67,7 @@ func rebuildIndex(ctx context.Context, repo restic.Repository, ignorePacks resti
id, err := idx.Save(ctx, repo, supersedes)
if err != nil {
return err
return errors.Fatalf("unable to save index, last error was: %v", err)
}
Verbosef("saved new index as %v\n", id.Str())