1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-22 15:57:07 +00:00

Merge pull request #3253 from restic/improve-prune-error

prune: Improve error message for missing files
This commit is contained in:
MichaelEischer 2021-01-31 12:03:20 +01:00 committed by GitHub
commit b8550a21f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -383,7 +383,10 @@ func prune(opts PruneOptions, gopts GlobalOptions, repo restic.Repository, usedB
} }
if len(indexPack) != 0 { if len(indexPack) != 0 {
Warnf("The index references needed pack files which are missing from the repository: %v\n", indexPack) Warnf("The index references %d needed pack files which are missing from the repository:\n", len(indexPack))
for id := range indexPack {
Warnf(" %v\n", id)
}
return errorPacksMissing return errorPacksMissing
} }
if len(ignorePacks) != 0 { if len(ignorePacks) != 0 {