2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-10 15:21:03 +00:00

Better backup parent snapshot search. Part of #513

I look for the newest snapshot that contains all supplied paths to backup.
This commit is contained in:
Lluís Batlle i Rossell 2016-05-09 12:42:12 +02:00
parent 7572586ded
commit 60c8c90d35

View File

@ -180,11 +180,15 @@ func samePaths(expected, actual []string) bool {
return true
}
if len(expected) != len(actual) {
return false
}
for i := range expected {
if expected[i] != actual[i] {
found := false
for j := range actual {
if expected[i] == actual[j] {
found = true
break
}
}
if !found {
return false
}
}