mirror of https://github.com/restic/restic.git
Merge pull request #1744 from restic/fix-parent-detect
backup: Clean target paths before finding parent
This commit is contained in:
commit
ecbbd851a1
|
@ -24,7 +24,7 @@ func FindLatestSnapshot(ctx context.Context, repo Repository, targets []string,
|
||||||
return ID{}, errors.Wrap(err, "Abs")
|
return ID{}, errors.Wrap(err, "Abs")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
absTargets = append(absTargets, target)
|
absTargets = append(absTargets, filepath.Clean(target))
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in New Issue