forked from TrueCloudLab/restic
Command snapshots
: do not list first dir twice
This commit is contained in:
parent
de5a530d2a
commit
c8bb688e26
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ func (cmd CmdSnapshots) Execute(args []string) error {
|
||||||
tab.Rows = append(tab.Rows, []interface{}{sn.ID()[:plen/2], sn.Time.Format(TimeFormat), sn.Hostname, sn.Paths[0]})
|
tab.Rows = append(tab.Rows, []interface{}{sn.ID()[:plen/2], sn.Time.Format(TimeFormat), sn.Hostname, sn.Paths[0]})
|
||||||
|
|
||||||
if len(sn.Paths) > 1 {
|
if len(sn.Paths) > 1 {
|
||||||
for _, path := range sn.Paths {
|
for _, path := range sn.Paths[1:] {
|
||||||
tab.Rows = append(tab.Rows, []interface{}{"", "", "", path})
|
tab.Rows = append(tab.Rows, []interface{}{"", "", "", path})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue