diff options
author | 2022-07-06 22:29:30 -0700 | |
---|---|---|
committer | 2022-07-06 22:29:30 -0700 | |
commit | 9962df69d69c57f0f06f91fc14580f938324c9e5 (patch) | |
tree | babb97051bcaeb034ae80ab950a00f6e843a935b /src | |
parent | 8dc6f839a9de1376bd39eec3d638475362f1e2fc (diff) | |
download | bun-9962df69d69c57f0f06f91fc14580f938324c9e5.tar.gz bun-9962df69d69c57f0f06f91fc14580f938324c9e5.tar.zst bun-9962df69d69c57f0f06f91fc14580f938324c9e5.zip |
[bun install] Fix `NotSameFileSystem` error
Diffstat (limited to '')
-rw-r--r-- | src/install/install.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index 5f890e832..939f58f7b 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -1094,7 +1094,7 @@ const PackageInstall = struct { return result; } else |err| { switch (err) { - error.NotSameFilesystem, error.NotSupported => { + error.NotSameFileSystem, error.NotSupported => { supported_method = .copyfile; }, error.FileNotFound => return Result{ |