mirror of https://github.com/restic/restic.git
Merge pull request #2039 from restic/fix-2038
snapshots: Don't print empty line for --compact
This commit is contained in:
commit
afde60e433
|
@ -195,7 +195,7 @@ func PrintSnapshots(stdout io.Writer, list restic.Snapshots, reasons []restic.Ke
|
||||||
data.Reasons = keepReasons[*id].Matches
|
data.Reasons = keepReasons[*id].Matches
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(sn.Paths) > 1 {
|
if len(sn.Paths) > 1 && !compact {
|
||||||
multiline = true
|
multiline = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue