mirror of
https://github.com/octoleo/restic.git
synced 2024-11-21 20:35:12 +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 mode os.FileMode
|
||||||
var target string
|
var target string
|
||||||
|
|
||||||
size := fmt.Sprintf("%6d", n.Size)
|
var size string
|
||||||
if human {
|
if human {
|
||||||
size = ui.FormatBytes(n.Size)
|
size = ui.FormatBytes(n.Size)
|
||||||
|
} else {
|
||||||
|
size = fmt.Sprintf("%6d", n.Size)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch n.Type {
|
switch n.Type {
|
||||||
|
Loading…
Reference in New Issue
Block a user