Skip to content

Commit

Permalink
Try to fix package resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
elegaanz committed Sep 25, 2024
1 parent 3bc8b56 commit 5a2655b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ pub fn prepare_package(spec: &PackageSpec) -> PackageResult<PathBuf> {
let local_package_dir = PathBuf::from(format!(
"{}{}/{}/{}",
std::env::var("PACKAGES_DIR")
.map(|dir| format!("{}/", dir))
.map(|dir| format!("{}/packages/", dir))
.unwrap_or_default(),
spec.namespace,
spec.name,
Expand Down

0 comments on commit 5a2655b

Please sign in to comment.