diff options
author | 2022-07-11 08:04:20 -0700 | |
---|---|---|
committer | 2022-07-11 08:04:20 -0700 | |
commit | a6c216db000ee2a68b238905a917430545cc594f (patch) | |
tree | ead078c5bbba2ac78a21fc2dc9965af024c93c4b /src/install/install.zig | |
parent | 439416940526bb6de69e9f328fa17dc21490ef6a (diff) | |
download | bun-a6c216db000ee2a68b238905a917430545cc594f.tar.gz bun-a6c216db000ee2a68b238905a917430545cc594f.tar.zst bun-a6c216db000ee2a68b238905a917430545cc594f.zip |
Revert "Fix: NotSameFileSystem at clonefile (#546)" (#581)
This reverts commit 2659febd1b74e8215ff7dbfb2d1b19f4b4f8a71a.
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 f98ec8981..68b9c422a 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -1061,7 +1061,7 @@ const PackageInstall = struct { return result; } else |err| { switch (err) { - error.NotSameFileSystem, error.NotSupported => { + error.NotSupported => { supported_method = .copyfile; }, error.FileNotFound => return Result{ |