From 6ae6e3ba11db2cf2f69e6cd54aae91421cc020ed Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 8 Jun 2024 19:08:05 -0700 Subject: [PATCH] remove unused var --- src/Command.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Command.zig b/src/Command.zig index c8cf00758..60a898309 100644 --- a/src/Command.zig +++ b/src/Command.zig @@ -32,8 +32,6 @@ const EnvMap = std.process.EnvMap; const PreExecFn = fn (*Command) void; -const log = std.log.scoped(.command); - /// Path to the command to run. This must be an absolute path. This /// library does not do PATH lookup. path: []const u8,