Fix snapshot filtering for relative paths in the backup command

The snapshot filtering internally converts relative paths to absolute
ones to ensure that the parent snapshots selection works for backups of
relative paths.
This commit is contained in:
Michael Eischer 2023-04-14 21:53:55 +02:00
parent fab4a8a4d2
commit 2841a87cc6
1 changed files with 1 additions and 0 deletions

View File

@ -46,6 +46,7 @@ func (f *SnapshotFilter) findLatest(ctx context.Context, be Lister, loader Loade
}
absTargets = append(absTargets, filepath.Clean(target))
}
f.Paths = absTargets
var latest *Snapshot