From f485fa4b1e37a1c387c101bcf2a963cab0b7dfc2 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Sat, 16 Jan 2016 10:07:05 -0800 Subject: [PATCH] add type to stat printed output License: MIT Signed-off-by: Jeromy --- core/commands/files/files.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/commands/files/files.go b/core/commands/files/files.go index e426088a6ef..ae082e08b8f 100644 --- a/core/commands/files/files.go +++ b/core/commands/files/files.go @@ -87,6 +87,7 @@ var FilesStatCmd = &cmds.Command{ fmt.Fprintf(buf, "Size: %d\n", out.Size) fmt.Fprintf(buf, "CumulativeSize: %d\n", out.CumulativeSize) fmt.Fprintf(buf, "ChildBlocks: %d\n", out.Blocks) + fmt.Fprintf(buf, "Type: %s\n", out.Type) return buf, nil }, },