diff options
Diffstat (limited to 'tvix/store/build.rs')
-rw-r--r-- | tvix/store/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/build.rs b/tvix/store/build.rs index 335e87b6c1d8..3fdc7418c1c5 100644 --- a/tvix/store/build.rs +++ b/tvix/store/build.rs @@ -15,7 +15,7 @@ fn main() -> Result<()> { // If we are in running `cargo build` manually, using `../..` works fine, // but in case we run inside a nix build, we need to instead point PROTO_ROOT // to a sparseTree containing that structure. - &[match std::env::var_os(&"PROTO_ROOT") { + &[match std::env::var_os("PROTO_ROOT") { Some(proto_root) => proto_root.to_str().unwrap().to_owned(), None => "../..".to_string(), }], |