mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.Build.Cache: remove debugging remnants
oops!
This commit is contained in:
parent
55bced9563
commit
dce08d9a57
1 changed files with 1 additions and 5 deletions
|
|
@ -690,11 +690,7 @@ pub const Manifest = struct {
|
||||||
const size = iter.next() orelse return error.InvalidFormat;
|
const size = iter.next() orelse return error.InvalidFormat;
|
||||||
const inode = iter.next() orelse return error.InvalidFormat;
|
const inode = iter.next() orelse return error.InvalidFormat;
|
||||||
const mtime_nsec_str = iter.next() orelse return error.InvalidFormat;
|
const mtime_nsec_str = iter.next() orelse return error.InvalidFormat;
|
||||||
const digest_str = iter.next() orelse {
|
const digest_str = iter.next() orelse return error.InvalidFormat;
|
||||||
std.debug.print("contents:\n{s}\n", .{file_contents});
|
|
||||||
@breakpoint();
|
|
||||||
return error.InvalidFormat;
|
|
||||||
};
|
|
||||||
const prefix_str = iter.next() orelse return error.InvalidFormat;
|
const prefix_str = iter.next() orelse return error.InvalidFormat;
|
||||||
const file_path = iter.rest();
|
const file_path = iter.rest();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue