diff options
author | Adam Joseph <adam@westernsemico.com> | 2022-10-13T04·58-0700 |
---|---|---|
committer | Adam Joseph <adam@westernsemico.com> | 2022-10-13T09·07+0000 |
commit | 25336fc47b02fe90bf489402ed84f8259aa80ca8 (patch) | |
tree | fdeb65567b25173052fae52e4229e4ba8b77406b /tvix/eval/src/value/mod.rs | |
parent | 534a2f95f86f3b0340040261ffc428d604210512 (diff) |
refactor(tvix/eval): factor out all calls to canon_path r/5119
Right now we're pretending that the Rust library path_clean does the same thing that cppnix's canonPath() does. This is not true. It's close enough for the test suite, but may come back to bite us. Let's create our own canon_path() function and call that in all the places where we intend to match the behavior of cppnix's canonPath(). That way when we fix this we can fix it once, in one place. Signed-off-by: Adam Joseph <adam@westernsemico.com> Change-Id: Ia6f9577f62f49ef352ff9cfa5efdf37c32d31b11 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6993 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/value/mod.rs')
-rw-r--r-- | tvix/eval/src/value/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index b8b46b444fe7..c8c8a54a40c3 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -11,6 +11,7 @@ mod attrs; mod builtin; mod function; mod list; +mod path; mod string; mod thunk; @@ -21,6 +22,7 @@ pub use attrs::NixAttrs; pub use builtin::Builtin; pub use function::{Closure, Lambda}; pub use list::NixList; +pub use path::canon_path; pub use string::NixString; pub use thunk::Thunk; |