refactor(tvix/eval): use &Path instead of PathBuf

This allows getting rid of some clones in eval/src/vm/generators.rs.

Change-Id: I330390307d3bcfeef19c98954c753ee55b1ccee3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8604
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Florian Klink 2023-05-21 11:17:34 +03:00 committed by flokli
parent b4bb9062ea
commit 11771a06ae
5 changed files with 19 additions and 19 deletions

View file

@ -85,7 +85,7 @@ impl NixSearchPathEntry {
}
};
if io.path_exists(path.clone()).map_err(|e| ErrorKind::IO {
if io.path_exists(&path).map_err(|e| ErrorKind::IO {
path: Some(path.clone()),
error: e.into(),
})? {