chore(macos): remove commented line

This commit is contained in:
utox39
2025-02-26 16:54:22 +01:00
parent df64681803
commit 13391e1ed1

View File

@@ -70,7 +70,6 @@ pub fn getShell(allocator: std.mem.Allocator) ![]u8 {
const shell = try std.process.getEnvVarOwned(allocator, "SHELL"); const shell = try std.process.getEnvVarOwned(allocator, "SHELL");
var child = std.process.Child.init(&[_][]const u8{ shell, "--version" }, allocator); var child = std.process.Child.init(&[_][]const u8{ shell, "--version" }, allocator);
// defer child.deinit();
child.stdout_behavior = .Pipe; child.stdout_behavior = .Pipe;
child.stderr_behavior = .Pipe; child.stderr_behavior = .Pipe;