mirror of https://github.com/restic/restic.git
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:
parent
fab4a8a4d2
commit
2841a87cc6
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue