fix: make bin linkers only for bin packages

Fixes binary linkers being made for non-binary
direct dependencies.
This commit is contained in:
daimond113 2025-03-14 08:58:45 +01:00
parent 4f48963da3
commit 3bc1f0fa5c
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
2 changed files with 5 additions and 0 deletions

View file

@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Fix binary linkers being made for non-binary packages by @daimond113
## [0.6.1] - 2025-03-09
### Fixed
- Fix path dependencies using project's workspace dependencies by @daimond113

View file

@ -60,6 +60,7 @@ impl DownloadAndLinkHooks for InstallHooks {
.chain(
graph
.iter()
.filter(|(_, node)| node.target.bin_path().is_some())
.filter_map(|(_, node)| node.node.direct.as_ref())
.map(|(alias, _, _)| alias.as_str()),
)