summaryrefslogtreecommitdiff
path: root/src/Command.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2023-07-09 12:14:05 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2023-07-09 12:14:05 -0700
commit9a0d131b5b942164fc3029b8d7bb1f1d408bc011 (patch)
treee40a300f257743f36ab24b71ac4157c62ddbd8e0 /src/Command.zig
parent26e17de77721e82bbc5a003a856c7ba8cf79ef2c (diff)
move TempDir to src/os and use the real tmpDir
Diffstat (limited to 'src/Command.zig')
-rw-r--r--src/Command.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Command.zig b/src/Command.zig
index 2f8b871e8..7bf64566e 100644
--- a/src/Command.zig
+++ b/src/Command.zig
@@ -23,8 +23,8 @@ const Command = @This();
const std = @import("std");
const builtin = @import("builtin");
-const TempDir = @import("TempDir.zig");
const internal_os = @import("os/main.zig");
+const TempDir = internal_os.TempDir;
const mem = std.mem;
const os = std.os;
const debug = std.debug;