2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 16:10:49 +00:00

forget: Join paths by ":"

This commit is contained in:
Alexander Neumann 2016-08-20 17:59:10 +02:00
parent 8e7202bd6a
commit 00f647dc92

View File

@ -3,9 +3,9 @@ package main
import (
"fmt"
"io"
"path"
"restic"
"restic/backend"
"strings"
)
// CmdForget implements the 'forget' command.
@ -125,7 +125,7 @@ func (cmd CmdForget) Execute(args []string) error {
snapshotGroups := make(map[key]restic.Snapshots)
for _, sn := range snapshots {
k := key{Hostname: sn.Hostname, Dirs: path.Join(sn.Paths...)}
k := key{Hostname: sn.Hostname, Dirs: strings.Join(sn.Paths, ":")}
list := snapshotGroups[k]
list = append(list, sn)
snapshotGroups[k] = list