diff options
-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 68b9c422a..f98ec8981 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.NotSupported => { + error.NotSameFileSystem, error.NotSupported => { supported_method = .copyfile; }, error.FileNotFound => return Result{ |