diff options
author | 2022-08-03 18:44:54 -0700 | |
---|---|---|
committer | 2022-08-03 18:44:54 -0700 | |
commit | e29ef5561f17bfef3ef2deeaf08a820f2c6f15af (patch) | |
tree | fc0dbfe3083d1a238c58d678dd914403c9585b13 | |
parent | 6ef45c9e337ad87750af85746b050177c163f6fc (diff) | |
download | bun-e29ef5561f17bfef3ef2deeaf08a820f2c6f15af.tar.gz bun-e29ef5561f17bfef3ef2deeaf08a820f2c6f15af.tar.zst bun-e29ef5561f17bfef3ef2deeaf08a820f2c6f15af.zip |
[bun install] Include scripts when lockfile doesn't change
-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 5fc2c71c8..f8e0eb4c3 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -4721,7 +4721,7 @@ pub const PackageManager = struct { .scripts = true, }, ); - + manager.lockfile.scripts = lockfile.scripts; var mapping = try manager.lockfile.allocator.alloc(PackageID, maybe_root.dependencies.len); std.mem.set(PackageID, mapping, invalid_package_id); |