Make bun install fast by default on linux

This commit is contained in:
Jarred Sumner
2022-02-12 05:00:58 -08:00
parent ac91f98528
commit 614d810ef4

View File

@@ -3463,7 +3463,7 @@ const PackageInstall = struct {
var supported_method: Method = if (Environment.isMac)
Method.clonefile
else
Method.copyfile;
Method.hardlink;
fn installWithClonefileEachDir(this: *PackageInstall) !Result {
const Walker = @import("../walker_skippable.zig");