From e887a064fb63347b4a4b21c282c1db01dfee98b1 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Fri, 24 Feb 2023 15:53:26 +0200 Subject: prefer `bun.copy()` over `std.mem.copy()` (#2152) --- src/cli/build_command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cli/build_command.zig') diff --git a/src/cli/build_command.zig b/src/cli/build_command.zig index c804316dc..92d2d5b3a 100644 --- a/src/cli/build_command.zig +++ b/src/cli/build_command.zig @@ -97,7 +97,7 @@ pub const BuildCommand = struct { }, .move => |value| { // const primary = f.input.text[from_path.len..]; - // std.mem.copy(u8, filepath_buf[2..], primary); + // bun.copy(u8, filepath_buf[2..], primary); // rel_path = filepath_buf[0 .. primary.len + 2]; rel_path = value.pathname; -- cgit v1.2.3