You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are doing std::env::current_dir()?.join(root) assuming that the path being supplied is relative to the current directory. root.as_ref().canonicalize()? achieves the same thing, but also allows absolute paths to be passed into the function by external consumers of the library API. I think this is a nice improvement that does not break behaviour (as far as I can see). Happy to send a patch if acceptable.