summaryrefslogtreecommitdiff
path: root/src/cmd/path.zig
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-16 13:02:47 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-16 13:02:47 +0200
commit3e53d3ae08d41b21d9edcd0f9bbd9e0edbdfb138 (patch)
tree613aafbc1bfd848d739a60452199fbed28e877b6 /src/cmd/path.zig
parent9edc1338b92d1ead4c5f2fad8c0516037963f7b6 (diff)
Unify input handling.
Diffstat (limited to 'src/cmd/path.zig')
-rw-r--r--src/cmd/path.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmd/path.zig b/src/cmd/path.zig
index 009621f..e0c549f 100644
--- a/src/cmd/path.zig
+++ b/src/cmd/path.zig
@@ -8,7 +8,6 @@ const CommandContext = types.CommandContext;
pub const PathGet = struct {
pub fn eval(path_get: PathGet, ctx: CommandContext) !CommandStatus {
_ = path_get;
- _ = ctx.input_source;
const current_path = std.process.getEnvVarOwned(ctx.allocator, "PATH") catch |err| switch (err) {
error.EnvironmentVariableNotFound => {