From bcc2cdfcdc5688942aa99b18503823c5f0c8b548 Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Sun, 12 Jul 2026 12:10:47 +0200 Subject: [PATCH] Fix installation Signed-off-by: AnErrupTion --- install.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.zig b/install.zig index b5649cd..8bb4835 100644 --- a/install.zig +++ b/install.zig @@ -384,7 +384,7 @@ fn installText( destination_directory: std.Io.Dir, destination_directory_path: []const u8, destination_file: []const u8, - options: std.Io.File.CreateFlags, + options: std.Io.Dir.CreateFileOptions, ) !void { var file = try destination_directory.createFile(io, destination_file, options); defer file.close(io);