From 95c0f28deef5d78f11177caba0c973a431a5a312 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 10 Feb 2022 17:07:01 -0800 Subject: [bun install] Continue linking bins if one fails --- src/install/bin.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/install/bin.zig b/src/install/bin.zig index 4cbf2baeb..810009be3 100644 --- a/src/install/bin.zig +++ b/src/install/bin.zig @@ -295,11 +295,11 @@ pub const Bin = extern struct { // Most likely, the symlink was already created by another package if (err == error.PathAlreadyExists) { this.setPermissions(to_path); - return; + continue; } this.err = err; - return; + continue; }; this.setPermissions(to_path); }, -- cgit v1.2.3