mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
Fix layout issue in cmd_snapshot "ascii art"
The layouter does not account for multi tags when determining the need for ascii art. 36fd8178 2017-03-03 21:35:04 abuseio.polyware.nl NL / A └── vs 36fd8178 2017-03-03 21:35:04 abuseio.polyware.nl NL ┌── / A └──
This commit is contained in:
parent
d50dc9f649
commit
354e8ffb82
@ -127,6 +127,9 @@ func printSnapshotsReadable(stdout io.Writer, list []*restic.Snapshot) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rows := len(sn.Paths)
|
rows := len(sn.Paths)
|
||||||
|
if rows < len(sn.Tags) {
|
||||||
|
rows = len(sn.Tags)
|
||||||
|
}
|
||||||
|
|
||||||
treeElement := " "
|
treeElement := " "
|
||||||
if rows != 1 {
|
if rows != 1 {
|
||||||
|
Loading…
Reference in New Issue
Block a user