| ... | ... | @@ -690,11 +690,7 @@ pub const Manifest = struct { |
| 690 | 690 | const size = iter.next() orelse return error.InvalidFormat; |
| 691 | 691 | const inode = iter.next() orelse return error.InvalidFormat; |
| 692 | 692 | const mtime_nsec_str = iter.next() orelse return error.InvalidFormat; |
| 693 | | const digest_str = iter.next() orelse { |
| 694 | | std.debug.print("contents:\n{s}\n", .{file_contents}); |
| 695 | | @breakpoint(); |
| 696 | | return error.InvalidFormat; |
| 697 | | }; |
| 693 | const digest_str = iter.next() orelse return error.InvalidFormat; |
| 698 | 694 | const prefix_str = iter.next() orelse return error.InvalidFormat; |
| 699 | 695 | const file_path = iter.rest(); |
| 700 | 696 | |