mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
snapshot: correct error handling for filepath.Abs
This commit is contained in:
parent
0532f08048
commit
4e0b2a8e3a
@ -692,6 +692,13 @@ func (arch *Archiver) Snapshot(ctx context.Context, p *restic.Progress, paths, t
|
||||
}
|
||||
sn.Excludes = arch.Excludes
|
||||
|
||||
// make paths absolute
|
||||
for i, path := range paths {
|
||||
if p, err := filepath.Abs(path); err == nil {
|
||||
paths[i] = p
|
||||
}
|
||||
}
|
||||
|
||||
jobs := archivePipe{}
|
||||
|
||||
// use parent snapshot (if some was given)
|
||||
|
@ -31,7 +31,7 @@ type Snapshot struct {
|
||||
// time.
|
||||
func NewSnapshot(paths []string, tags []string, hostname string, time time.Time) (*Snapshot, error) {
|
||||
for i, path := range paths {
|
||||
if p, err := filepath.Abs(path); err != nil {
|
||||
if p, err := filepath.Abs(path); err == nil {
|
||||
paths[i] = p
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user