Skip to content

Commit

Permalink
fix: detect virtual packages from environment (#1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Oct 2, 2024
1 parent fad0b63 commit 19d7c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub async fn solve_environment(
let virtual_packages = tool_configuration.fancy_log_handler.wrap_in_progress(
"determining virtual packages",
move || {
VirtualPackage::detect(&VirtualPackageOverrides::default()).map(|vpkgs| {
VirtualPackage::detect(&VirtualPackageOverrides::from_env()).map(|vpkgs| {
vpkgs
.iter()
.map(|vpkg| GenericVirtualPackage::from(vpkg.clone()))
Expand Down

0 comments on commit 19d7c67

Please sign in to comment.