Delete debug line

This commit is contained in:
David Gonzalez Martin 2024-03-13 13:27:58 -06:00
parent e88741ab95
commit 9f899efb8b

View File

@ -25,7 +25,6 @@ pub fn build(b: *std.Build) !void {
else => target_query.abi, else => target_query.abi,
.linux => b: { .linux => b: {
const os_release = try std.fs.cwd().readFileAlloc(b.allocator, "/etc/os-release", 0xffff); const os_release = try std.fs.cwd().readFileAlloc(b.allocator, "/etc/os-release", 0xffff);
std.debug.print("/etc/os-release:\n```\n{s}\n```\n", .{os_release});
const attribute_name = "ID="; const attribute_name = "ID=";
const i = std.mem.indexOf(u8, os_release, attribute_name) orelse unreachable; const i = std.mem.indexOf(u8, os_release, attribute_name) orelse unreachable;
const maybe_start_quote_index = i + attribute_name.len; const maybe_start_quote_index = i + attribute_name.len;