(b content.Info)
| 101 | } |
| 102 | |
| 103 | func (c *commandContentList) outputCompressed(b content.Info) { |
| 104 | c.out.printStdout("%v length %v packed %v %v %v\n", |
| 105 | b.ContentID, |
| 106 | maybeHumanReadableBytes(c.human, int64(b.OriginalLength)), |
| 107 | maybeHumanReadableBytes(c.human, int64(b.PackedLength)), |
| 108 | c.compressionInfoStringString(b), |
| 109 | c.deletedInfoString(b), |
| 110 | ) |
| 111 | } |
| 112 | |
| 113 | func (*commandContentList) deletedInfoString(b content.Info) string { |
| 114 | if b.Deleted { |
no test coverage detected