refactor(tvix/store): remove needless borrow in build.rs
Change-Id: I2c2a70e5ffbb080702f57218aa9dcfe53d08870f Reviewed-on: https://cl.tvl.fyi/c/depot/+/8110 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
parent
cb8466d417
commit
f2624f1028
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ fn main() -> Result<()> {
|
|||
let out_dir = std::path::PathBuf::from(std::env::var("OUT_DIR").unwrap());
|
||||
let descriptor_path = out_dir.join("tvix.store.v1.bin");
|
||||
|
||||
builder = builder.file_descriptor_set_path(&descriptor_path);
|
||||
builder = builder.file_descriptor_set_path(descriptor_path);
|
||||
};
|
||||
|
||||
builder.build_server(true).build_client(true).compile(
|
||||
|
|
Loading…
Reference in a new issue