28 lines
928 B
Diff
28 lines
928 B
Diff
|
diff --git a/cmd/fs_handlers.go b/cmd/fs_handlers.go
|
||
|
index d86e8d91..f894ac89 100644
|
||
|
--- a/cmd/fs_handlers.go
|
||
|
+++ b/cmd/fs_handlers.go
|
||
|
@@ -591,14 +591,8 @@ func handleShowFileOrDir(ctx *cli.Context, ctl *client.Client, path string) erro
|
||
|
return tmpl.Execute(os.Stdout, info)
|
||
|
}
|
||
|
|
||
|
- isCached, err := ctl.IsCached(path)
|
||
|
- if err != nil {
|
||
|
- return err
|
||
|
- }
|
||
|
-
|
||
|
pinState := yesify(info.IsPinned)
|
||
|
explicitState := yesify(info.IsExplicit)
|
||
|
- cachedState := yesify(isCached)
|
||
|
|
||
|
nodeType := "file"
|
||
|
if info.IsDir {
|
||
|
@@ -627,7 +621,6 @@ func handleShowFileOrDir(ctx *cli.Context, ctl *client.Client, path string) erro
|
||
|
printPair("Inode", strconv.FormatUint(info.Inode, 10))
|
||
|
printPair("Pinned", pinState)
|
||
|
printPair("Explicit", explicitState)
|
||
|
- printPair("Cached", cachedState)
|
||
|
printPair("IsRaw", yesify(info.IsRaw))
|
||
|
printPair("ModTime", info.ModTime.Format(time.RFC3339))
|
||
|
printPair("Tree Hash", info.TreeHash.B58String())
|