mirror of
https://github.com/octoleo/restic.git
synced 2024-11-21 12:25:09 +00:00
Refactor formatNode
This commit is contained in:
parent
2beaa74892
commit
5f153109ba
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user