mirror of https://github.com/restic/restic.git
prune: Correct error message
This commit is contained in:
parent
f6df94a50e
commit
f0113139ea
|
@ -245,7 +245,7 @@ func prune(opts PruneOptions, gopts GlobalOptions, repo restic.Repository, usedB
|
||||||
|
|
||||||
// Check if all used blobs have been found in index
|
// Check if all used blobs have been found in index
|
||||||
if len(usedBlobs) != 0 {
|
if len(usedBlobs) != 0 {
|
||||||
Warnf("%v not found in the new index\n"+
|
Warnf("%v not found in the index\n"+
|
||||||
"Data blobs seem to be missing, aborting prune to prevent further data loss!\n"+
|
"Data blobs seem to be missing, aborting prune to prevent further data loss!\n"+
|
||||||
"Please report this error (along with the output of the 'prune' run) at\n"+
|
"Please report this error (along with the output of the 'prune' run) at\n"+
|
||||||
"https://github.com/restic/restic/issues/new/choose", usedBlobs)
|
"https://github.com/restic/restic/issues/new/choose", usedBlobs)
|
||||||
|
|
Loading…
Reference in New Issue