Submitter | phabricator |
---|---|
Date | March 3, 2021, 6:24 p.m. |
Message ID | <differential-rev-PHID-DREV-72pgfitrstbke2k2lyjt-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/48415/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/rust/hg-core/src/repo.rs b/rust/hg-core/src/repo.rs --- a/rust/hg-core/src/repo.rs +++ b/rust/hg-core/src/repo.rs @@ -58,9 +58,9 @@ if let Some(root) = explicit_path { // Having an absolute path isn’t necessary here but can help code // elsewhere - let root = current_dir()?.join(root); - if root.join(".hg").is_dir() { - Self::new_at_path(root, config) + let absolute_root = current_dir()?.join(root); + if absolute_root.join(".hg").is_dir() { + Self::new_at_path(absolute_root, config) } else { Err(RepoError::NotFound { at: root.to_owned(),