Skip to content

Commit

Permalink
don't hardcode dependency while building
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicBurkart committed Oct 12, 2020
1 parent caaaad2 commit 5ba894c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbolift_internals/src/build_project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub fn edit_cargo_file(cargo_path: &Path, function_name: &str) -> anyhow::Result
symlink_dir(&canonical, &dep_location)?;
}

*buf = ("./.local_deps/".to_string() + function_name).into();
*buf = relative_local_deps_cache.join(function_name);
}
}

Expand Down

0 comments on commit 5ba894c

Please sign in to comment.