diff options
author | 2022-02-10 17:07:01 -0800 | |
---|---|---|
committer | 2022-02-10 17:07:01 -0800 | |
commit | 95c0f28deef5d78f11177caba0c973a431a5a312 (patch) | |
tree | 1fef9747dc1c0cfbcdef01d37fa406472d7489b9 /src | |
parent | 185f74dfae6a1c755915939fe4b7d69cad3f03af (diff) | |
download | bun-95c0f28deef5d78f11177caba0c973a431a5a312.tar.gz bun-95c0f28deef5d78f11177caba0c973a431a5a312.tar.zst bun-95c0f28deef5d78f11177caba0c973a431a5a312.zip |
[bun install] Continue linking bins if one fails
Diffstat (limited to 'src')
-rw-r--r-- | src/install/bin.zig | 4 |
1 files changed, 2 insertions, 2 deletions
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); }, |