diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/install/install.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index ea1832897..c26d8847b 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -3172,6 +3172,10 @@ const PackageInstall = struct { hardlink, // Slowest if single-threaded + // Note that copyfile does technically support recursion + // But I suspect it is slower in practice than manually doing it because: + // - it adds syscalls + // - it runs in userspace copyfile, const BackendSupport = std.EnumArray(Method, bool); |