From 73a18c99e6a4c53ab69d94d993bb3da90f1b14d8 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sun, 7 Aug 2022 23:24:23 -0700 Subject: [bun install] Increase "slow filesystem detected" notice --- src/install/install.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/install/install.zig b/src/install/install.zig index a60fe405f..87e555dc7 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -1664,7 +1664,7 @@ pub const PackageManager = struct { } if (this.options.log_level != .silent) { const elapsed = timer.read(); - if (elapsed > std.time.ns_per_ms * 10) { + if (elapsed > std.time.ns_per_ms * 100) { var cache_dir_path = std.os.getFdPath(cache_directory.fd, &path_buf) catch "it's"; Output.prettyErrorln( "warn: Slow filesystem detected. If {s} is a network drive, consider setting $BUN_INSTALL_CACHE_DIR to a local folder.", -- cgit v1.2.3