summaryrefslogtreecommitdiff
path: root/src/cmd/path.zig
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-14 16:44:05 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-14 16:44:05 +0200
commit620effdbc8de10fc240a5f0a4d5e8934a0e0e0eb (patch)
tree2b3e33756b33c6761c68a22b224dfebb79f30bc3 /src/cmd/path.zig
parent14ccaa3a849c2fbf30595491e605643fbfd4f733 (diff)
Move src/cmd/{=> lib/}types.zig.
Diffstat (limited to 'src/cmd/path.zig')
-rw-r--r--src/cmd/path.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/path.zig b/src/cmd/path.zig
index 734350a..f8d5939 100644
--- a/src/cmd/path.zig
+++ b/src/cmd/path.zig
@@ -2,7 +2,7 @@ const std = @import("std");
const Allocator = std.mem.Allocator;
const print = std.debug.print;
-const types = @import("./types.zig");
+const types = @import("./lib/types.zig");
const CommandStatus = types.CommandStatus;
const OutputCapture = types.OutputCapture;
const InputSource = types.InputSource;