Refactor formatNode

This commit is contained in:
Michael Eischer 2023-06-08 19:12:49 +02:00
parent 2beaa74892
commit 5f153109ba
1 changed files with 3 additions and 1 deletions

View File

@ -16,9 +16,11 @@ func formatNode(path string, n *restic.Node, long bool, human bool) string {
var mode os.FileMode
var target string
size := fmt.Sprintf("%6d", n.Size)
var size string
if human {
size = ui.FormatBytes(n.Size)
} else {
size = fmt.Sprintf("%6d", n.Size)
}
switch n.Type {