summaryrefslogtreecommitdiff
path: root/src/Command.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-06-08 19:08:05 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-06-08 19:08:05 -0700
commit6ae6e3ba11db2cf2f69e6cd54aae91421cc020ed (patch)
treede2386472204b80e2306613f0b0c130064bc9714 /src/Command.zig
parent8f9cdff1f5908360fc4d86a98a3bff83fa675bbf (diff)
remove unused var
Diffstat (limited to 'src/Command.zig')
-rw-r--r--src/Command.zig2
1 files changed, 0 insertions, 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,