@zigc/lib 0.17.0-dev.87 → 0.17.0-dev.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fuzzer.zig +2 -0
- package/package.json +1 -1
package/fuzzer.zig
CHANGED
|
@@ -171,6 +171,8 @@ const Executable = struct {
|
|
|
171
171
|
|
|
172
172
|
const cache_dir = Io.Dir.cwd().createDirPathOpen(io, cache_dir_path, .{}) catch |e|
|
|
173
173
|
panic("failed to open directory '{s}': {t}", .{ cache_dir_path, e });
|
|
174
|
+
cache_dir.createDirPath(io, "tmp") catch |e|
|
|
175
|
+
panic("failed to create directory 'tmp': {t}", .{e});
|
|
174
176
|
log_f = cache_dir.createFile(io, "tmp/libfuzzer.log", .{ .truncate = false }) catch |e|
|
|
175
177
|
panic("failed to create file 'tmp/libfuzzer.log': {t}", .{e});
|
|
176
178
|
self.cache_f = cache_dir.createDirPathOpen(io, "f", .{}) catch |e|
|