Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,17 @@ pub trait Backend: Debug + Send + Sync {
.await?
.filter_by_tool(dependencies)
.into();
ts.resolve(config).await?;
// Dependency envs only need PATH entries for tools that are already
// available. Resolving offline avoids applying global release-age
// cutoffs to helper tools like node/npm while querying another backend.
ts.resolve_with_opts(
config,
&ResolveOptions {
offline: true,
..Default::default()
},
)
Comment thread
risu729 marked this conversation as resolved.
.await?;
Ok(ts)
}

Expand Down
Loading